ethers.js/packages/random/lib/shuffle.js
2021-03-07 18:24:04 -05:00

15 lines
431 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.shuffled = void 0;
function shuffled(array) {
array = array.slice();
for (var i = array.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1));
var tmp = array[i];
array[i] = array[j];
array[j] = tmp;
}
return array;
}
exports.shuffled = shuffled;
//# sourceMappingURL=shuffle.js.map