You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
356 B
23 lines
356 B
4 years ago
|
'use strict';
|
||
|
|
||
|
const values = require('../helpers/values');
|
||
|
|
||
|
module.exports = function shuffle() {
|
||
|
const items = values(this.items);
|
||
|
|
||
|
let j;
|
||
|
let x;
|
||
|
let i;
|
||
|
|
||
|
for (i = items.length; i; i -= 1) {
|
||
|
j = Math.floor(Math.random() * i);
|
||
|
x = items[i - 1];
|
||
|
items[i - 1] = items[j];
|
||
|
items[j] = x;
|
||
|
}
|
||
|
|
||
|
this.items = items;
|
||
|
|
||
|
return this;
|
||
|
};
|