@afoot/sorted-array
v1.0.2
Published
A JavaScript module to maintain a sorted, private array.
Downloads
12
Maintainers
Readme
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]