2.3.2 • Published 4 years ago

@extra-array/shuffle.min v2.3.2

Weekly downloads
14
License
MIT
Repository
github
Last release
4 years ago

Rearranges values in arbitrary order.

This is part of package extra-array.

This is browserified, minified version of @extra-array/shuffle. It is exported as global variable array_shuffle. CDN: unpkg, jsDelivr.

array.shuffle(x, [n]);
// x: an array
// n: random seed 0->1
const array = require('extra-array');

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

array.shuffle(x, 0.3);
// [ 4, 5, 2, 3, 1 ]

array.shuffle(x, 0.3);
// [ 4, 5, 2, 3, 1 ]

references