/array-first-clone

Primary LanguageJavaScriptOtherNOASSERTION

array-list-clone

This repo is just for study purpose.

NPM version Build Status

Get the first element or first n elements of an array.

(TOC generated by verb using markdown-toc)

Usage

var first = require('array-first');
first(['a', 'b', 'c', 'd', 'e', 'f']);
//=> 'a'

first(['a', 'b', 'c', 'd', 'e', 'f'],1);
// => 'a'

first(['a', 'b', 'c', 'd', 'e', 'f'], 3);
//=> ['a', 'b', 'c']

Related projects

array-last: Get the last or last n elements in an array. | homepage

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright &copyright 2016 Jon Schlinkert Released under the MIT license.


This file was generated by verb on January 12 2016.