| .. | |||
| node_modules/ is-number | 4 months ago | ||
| .jshintrc | 4 months ago | ||
| .npmignore | 4 months ago | ||
| .travis.yml | 4 months ago | ||
| LICENSE-MIT | 4 months ago | ||
| README.md | 4 months ago | ||
| index.js | 4 months ago | ||
| package.json | 4 months ago | ||
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.