A package that... well... shuffles the values of an array. Yup. That's all.
npm install @adriantombu/array-shuffleYet Another Array Shuffle Package
=================================
 
A package that... well... shuffles the values of an array. Yup. That's all. All in 206 bytes of code.
* Install the library first with yarn add @adriantombu/array-shuffle
* And then import it in your script
``
const { arrayShuffle } = require('@adriantombu/array-shuffle')
const myRandomArray = [ "I", "believe", "I", "can", "fly"]
const myShuffledArray = arrayShuffle(myRandomArray)
[ "fly", "I", "can", "believe", "I"]
`
* Clone the repository git clone git@github.com:adriantombu/array-shuffle.gityarn install
* Install the packages with src/index.ts` file
* Modify the
* When everything's done, you can send a PR \o/