|
1 ano atrás | |
---|---|---|
.. | ||
LICENSE | 1 ano atrás | |
README.md | 1 ano atrás | |
index.js | 1 ano atrás | |
package.json | 1 ano atrás |
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.