@unction/takefirst

Returns the first N of a list of ordered values


Keywords
unction, functional
License
ICU
Install
npm install @unction/takefirst@8.11.1

Documentation

@unction/takeFirst

Tests Stability Dependencies

number => Array | string => Array | string

Returns the first N of a list of ordered values.

takeFirst(2)([1, 2, 3]) // [1, 2]
takeFirst(1)([1, 2, 3]) // [1]
takeFirst(2)("abc") // "ab"
takeFirst(1)("abc") // "a"