@extra-array/insert

2.1.75 • Public • Published

Inserts a value to an ordered array.

This is part of package extra-array.

array.insert(x, v, [fn]);
// x:  an array
// 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]

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

references

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @extra-array/insert

      Weekly Downloads

      1

      Version

      2.1.75

      License

      MIT

      Unpacked Size

      2.57 kB

      Total Files

      5

      Last publish

      Collaborators

      • wolfram77