3.2.0 • Published 1 year ago

just-random v3.2.0

Weekly downloads
7
License
MIT
Repository
github
Last release
1 year ago

just-random

Part of a library of zero-dependency npm modules that do just do one thing. Guilt-free utilities for every occasion.

🍦 Try it

npm install just-random
yarn add just-random

Return a randomly selected element in an array

import random from 'just-random';

random([1, 2, 3]);
// one of [1, 2, 3], at random