Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 221 Bytes

.verb.md

File metadata and controls

14 lines (10 loc) · 221 Bytes

Usage

var first = require('{%= name %}');

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']