Just a string randomizer
npm install @chonla/randomizerJust a string randomizer.
````
const Randomizer = require('@chonla/randomizer')
const rnd = new Randomizer()
console.log(rnd.alphanumeric(40))
console.log(rnd.get({
type: 'custom',
length: 32,
charset: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_-'
}))