Generates random number of zero
Install this package by:
npm i random-zeroYou can try this with npx also:
npx random-zero --start=0 --end=10
npx random-zero -s 0 -e 10
npx random-zeroYou can import it like this:
import zeroGenerator from "random-zero";
import { generateZero } from "random-zero";And use it like this:
console.log(zeroGenerator(0, 10));