2.0.0 • Published 2 years ago

shake-array v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

shakeArray

shakeArray is a function to randomize the position of elements in an array.

Installation

Use the package manager npm to install shakeArray.

npm install shake-array

Usage

import shakeArray from 'shake-array';

const arr = [1, 2, 3, 4, 5];

const modifiedArr = shakeArray(arr);

console.log(modifiedArr);
// expected output : [2, 5, 1, 3, 4]

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT