![]() |
пре 2 година | |
---|---|---|
.. | ||
node_modules | пре 2 година | |
.jshintrc | пре 2 година | |
.npmignore | пре 2 година | |
.travis.yml | пре 2 година | |
LICENSE-MIT | пре 2 година | |
README.md | пре 2 година | |
index.js | пре 2 година | |
package.json | пре 2 година |
Get all but the last element or last n elements of an array.
npm i array-initial --save
var initial = require('array-initial');
initial(['a', 'b', 'c', 'd', 'e', 'f']);
//=> ['a', 'b', 'c', 'd', 'e']
initial(['a', 'b', 'c', 'd', 'e', 'f'], 1);
//=> ['a', 'b', 'c', 'd', 'e']
initial(['a', 'b', 'c', 'd', 'e', 'f'], 2);
//=> ['a', 'b', 'c', 'd']
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert
Released under the MIT license
This file was generated by verb on December 12, 2014. To update, run npm i -g verb && verb
.