Socket
Socket
Sign inDemoInstall

@mathigon/core

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mathigon/core - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

11

build/core.js

@@ -641,2 +641,12 @@ 'use strict';

/**
* Join multiple Arrays
* @param {*[]...} arrays
* @returns {*[]}
*/
function join(...arrays) {
return [].concat(...arrays);
}
/**
* Converts an array into a one-way linked list, with .val and .next properties.

@@ -946,2 +956,3 @@ * @param array

exports.difference = difference;
exports.join = join;
exports.toLinkedList = toLinkedList;

@@ -948,0 +959,0 @@ exports.Evented = Evented;

2

package.json
{
"name": "@mathigon/core",
"version": "0.2.4",
"version": "0.2.5",
"description": "JavaScript utilities library containing function wrappers, string and array helper functions, type checking and event classes.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -296,2 +296,12 @@ // =============================================================================

/**
* Join multiple Arrays
* @param {*[]...} arrays
* @returns {*[]}
*/
export function join(...arrays) {
return [].concat(...arrays);
}
/**
* Converts an array into a one-way linked list, with .val and .next properties.

@@ -298,0 +308,0 @@ * @param array

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc