@extra-array/prefix
v2.10.19
Published
Picks an arbitrary prefix.
Downloads
1,597
Readme
Picks an arbitrary prefix. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
This is part of package extra-array.
array.prefix(x, [n], [r]);
// x: an array
// n: number of values (-1 => any)
// r: random seed 0->1
const array = require("extra-array");
var x = [1, 2, 3];
array.prefix(x);
// [ 1, 2 ]
array.prefix(x, 1);
// [ 1 ]
array.prefix(x, -1, 0.5);
// [ 1, 2 ]