@afoot/sorted-array

A JavaScript module to maintain a sorted, private array.


Keywords
javascript, module, array, npm
License
MIT
Install
npm install @afoot/sorted-array@1.0.2

Documentation

sorted array

A configurable JavaScript module to maintain a sorted, private array.

installation

Sorted Array can be used as an npm package or download the package and use it as an ESM module right in the browser.

documentation

View full documentation and examples at https://niftinessafoot.github.io/sorted-array/

example

Sorted Array takes either an array of existing data or a config object.

import { SortedArray } from '@afoot/sorted-array/';

const sortedArray = new SortedArray([5, 2, 3]);

sortedArray.log; // returns [2,3,5]

You can add, edit, and delete from the instance.

import { SortedArray } from '@afoot/sorted-array/';

const sortedArray = new SortedArray([5, 2, 3]);
sortedArray.add('1');

sortedArray.log; // returns [1,2,3,5]

license

MIT © Matthew Smith

made with ❤️ and ☕️ by

Niftiness Afoot! Matthew Smith