Last updated 6 years ago
take :: (Integer count, Array input) => Array output
Available since v1.5.0
take returns a new array only keeping the first count elements of the input array. If count is negative, take returns the last count elements.
take
count
import { take } from 'conductor' take(2, [1, 2, 3]) // [1, 2]
import { take } from 'conductor' take(-2, [1, 2, 3]) // [2, 3]
import { take } from 'conductor' take(100, [1, 2, 3]) // [1, 2, 3]