You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

extra-array

Package Overview
Dependencies
Maintainers
1
Versions
860
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-array - npm Package Compare versions

Comparing version

to
4.1.22

2

package.json
{
"name": "extra-array",
"version": "4.1.21",
"version": "4.1.22",
"description": "An array is a collection of values, stored contiguously.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -27,13 +27,15 @@ An [array] is a collection of values, stored contiguously.<br>

be able to achieve your goals faster, regardless of your level of expertise. Try
it out today and discover how it can transform your development experience! We
use a consistent naming scheme that helps you quickly identify the functions you
need. All functions except `from*()` take array as 1st parameter. Some functions
operate on a specified range in the array and are called `ranged*()`, such as
`rangedPartialSort()`. Functions like `swap()` are pure and do not modify the
array itself, while functions like `swap$()` *do modify (update)* the array
itself. Some functions accept a map function for *faster comparison*, such as
`unique()`. Further, functions which return an iterable instead of an array are
prefixed with `i`, such as `isubsequences()`. We borrow some names from other
programming languages such as *Haskell*, *Python*, *Java*, and *Processing*.
it out today and discover how it can transform your development experience!
We use a consistent naming scheme that helps you quickly identify the functions
you need. All functions except `from*()` take array as 1st parameter. Some
functions operate on a specified range in the array and are called `ranged*()`,
such as `rangedPartialSort()`. Functions like `swap()` are pure and do not
modify the array itself, while functions like `swap$()` *do modify (update)* the
array itself. Some functions accept a map function for *faster comparison*,
such as `unique()`. Further, functions which return an iterable instead of an
array are prefixed with `i`, such as `isubsequences()`. We borrow some names
from other programming languages such as *Haskell*, *Python*, *Java*, and
*Processing*.
This package is available in *Node.js* and *Web* formats. To use it on the web,

@@ -40,0 +42,0 @@ simply use the `extra_array` global variable after loading with a `<script>`