aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/array-helpers.js
blob: ffb3b63dc31ec80407668d9f31691230004fb1a1 (plain) (blame)
1
2
3
4
export const shuffleArray = arr => arr
  .map(a => [Math.random(), a])
  .sort((a, b) => a[0] - b[0])
  .map(a => a[1]);