@extra-array/insert-update.min

2.1.75 • Public • Published

Inserts a value to an ordered array.

This is part of package extra-array.

This is browserified, minified version of @extra-array/insert-update.
It is exported as global variable array_insert.
CDN: unpkg, jsDelivr.

array.insert$(x, v, [fn]);
// x:  an array (updated)
// v:  value to insert
// fn: compare function (a, b)
// --> x
const array = require('extra-array');

var a = [1, 7, 8, 10];
array.insert$(a, 5);
// [1, 5, 7, 8, 10]

a;
// [1, 5, 7, 8, 10]

var b = ['a', 'K', 'M', 'n'];
array.insert$(b, 'l', (a, b) => a.toLowerCase().localeCompare(b.toLowerCase()));
// ['a', 'K', 'l', 'M', 'n'];

b;
// ['a', 'K', 'l', 'M', 'n'];

references

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.1.75
    0
    • latest

Version History

Package Sidebar

Install

npm i @extra-array/insert-update.min

Weekly Downloads

0

Version

2.1.75

License

MIT

Unpacked Size

3.34 kB

Total Files

4

Last publish

Collaborators

  • wolfram77