1.0.1 • Published 7 years ago

random-string-no-dep v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

Random string no dependency

This is a simple package that helps you generate random strings. The strings are generated using nodejs built in crypto library and as such has no external dependencies.

Usage

$ npm install random-string-no-dep
const generator = require('random-string-no-dep');

const randomString = generator(2);

That's all.