Licence
MIT
Version
1.0.2
Deps
0
Size
9 kB
Vulns
0
Weekly
0
ranlow
Python-like random utilities for JavaScript, designed to make your life easier

Description
ranlow is a random tools that imitate python style.
You Can Use Custom Seed
ranlow.randomseed(27382: number)
console.log(ranlow.random())
Usage Example
import ranlow from 'ranlow';
const arr = ["apple", "banana", "cherry"];
console.log(ranlow.choice(arr));
console.log(ranlow.random());