Generate unique ids of any length.
Internally this implementation uses Math.random()
to remain small, fast and dependency free. However, Math.random()
is not actually all that random so if you need a better random number generator, I recommend uid2.
$ component install treetopllc/uid
$ npm install uid
uid(10) => "hbswt489ts"
uid() => "rhvtfnt" Defaults to 7
Visit https://github.com/lukeed/uid for documentation and installation instructions.
Happy coding!