aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/array-helpers.js
blob: 5e592b7f79fb26f20bd8f3a96a47e01441d19ca6 (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]);