0.0.3 • Published 8 years ago

array_functions v0.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

array-functions


This package is a collection of useful array functions not provided in the current version of javascript.

installation

[sudo] npm install funk

usage

require('funk');

var a = [1, 2, 3, 4];
a.removeIndex(2);
console.log(a);

// [ 1, 2, 4 ]

var b = [1, 2, 3, 4];
b.removeValue(3);
console.log(b);

// [ 1, 2, 4 ]
1.0.5

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago