0.1.0 • Published 2 years ago

random-string-bhutta v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

random-string-bhutta

How to install

npm install random-string-bhutta

How generate random string

const RandomString = require('random-string-bhutta');

const string = RandomString(); console.log(string);

This will generate random string with length of 12 characters if you want to generate random string with specific length then follow

const length = 20; const string = RandomString(20); console.log(string);

This will generate random string of 20 characters length