This is a module for simplifying math.floor() and stuff like that
npm install cirnorndbash
npm install cirnornd
`
Docs
`js
.randomInt(min, max)
`
returns a random integer inbetween min and max (both inclusive)
`js
.randomString(lenght, symbols = false, numbers = true, upperCase = true, lowerCase = true)
`
returns a random string of a defined lenghth, it can include symbols, numbers, uppercase letters and lowercase letter, by default all of them are included excluding symbols.Example of usage:
`js
const cirno = require('cirnornd');console.log(
Random string: ${cirno.randomString(20, true)}\nRandom Number: ${cirno.randomInt(0, 100)});
``