UNPKG

@leofavre/memory-game-component

Version:

A memory game web component.

12 lines 236 B
export default (function (arr) { return arr.map(function (a) { return { sort: Math.random(), value: a }; }).sort(function (a, b) { return a.sort - b.sort; }).map(function (a) { return a.value; }); });