Skip to content

Instantly share code, notes, and snippets.

@shotasenga
Created December 21, 2016 06:11
Show Gist options
  • Save shotasenga/e539aa8bffbab83c594adf3cc6b2ab4f to your computer and use it in GitHub Desktop.
Save shotasenga/e539aa8bffbab83c594adf3cc6b2ab4f to your computer and use it in GitHub Desktop.
'use strict';
/**
* shuffle an array
*
* @param {Array} arr
* @return {Array}
*/
export default (arr) => arr.sort( s => .5 - Math.random())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment