|
před 2 roky | |
---|---|---|
.. | ||
LICENSE | před 2 roky | |
README.md | před 2 roky | |
index.js | před 2 roky | |
package.json | před 2 roky |
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.