A package that have (almost) all the random things

js
Random number | randomery.randomnumber(minimum number, maximum number)
Random string | randomery.randomstring(string length)
Random RGB | randomery.randomRGB()
Random hex | randomery.randomHex()
Token | randomery.token()
Dice | randomery.dice()
Scramble | randomery.scramble(text)
Caesar cipher | randomery.caesarcipher(rotation count, text)
Password generator | randomery.pwgen(length)
Random binary | randomery.binary()
`Setup code:
`js
const randomery = require('randomery')
`
Yes, just like that!Funni tips:
$3
`js
const randomery = require('randomery')
console.log(randomery.caesarcipher(randomery.randomnumber(1, 25), "Your text here."))
`
The output will be caesar cipher but we don't know how many rotations applied.$3
`js
const randomery = require('randomery')setInterval(() => {
console.log(randomery.scramble("10100100101010101010101010101010101010100101010"))
}, 500)
``Complete documentation will be on this page: https://rand.samscodz.repl.co