|
|
2 éve | |
|---|---|---|
| .. | ||
| LICENSE | 2 éve | |
| README.md | 2 éve | |
| index.js | 2 éve | |
| package.json | 2 éve | |
Random string generator.
Basically Math.random().toString(36).slice(2),
but with both upper and lower case letters and arbitrary lengths.
Useful for creating fast, not cryptographically secure salts.
// base62 by default
var rndm = require('rndm')
var salt = rndm(16)
Create a new random generator with custom characters.