@extra-array/take

Keeps first n values only.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@extra-array/take
1622.10.19a year ago3 years agoMinified + gzip package size for @extra-array/take in KB

Readme

Keeps first n values only. :package: :smileycat: :running: :vhs: :moon: :scroll: :newspaper: :bluebook:
Alternatives: take, takeRight, takeWhile, takeWhileRight.
Similar: take, drop.

This is part of package extra-array.



array.take(x, [n]);
// x: an array
// n: number of values (1)

const array = require("extra-array");

var x = [1, 2, 3, 4, 5];
array.take(x, 2);
// [ 1, 2 ]

array.take(x, 3);
// [ 1, 2, 3 ]



References