christian 4571a14169 android fix | vor 3 Jahren | |
---|---|---|
.. | ||
index.d.ts | vor 3 Jahren | |
index.js | vor 3 Jahren | |
license | vor 3 Jahren | |
package.json | vor 3 Jahren | |
readme.md | vor 3 Jahren |
Generate a cryptographically strong random string
Can be useful for creating an identifier, slug, salt, fixture, etc.
$ npm install crypto-random-string
const cryptoRandomString = require('crypto-random-string');
cryptoRandomString(10);
//=> '2cf05d94db'
Returns a hex
string.
Type: number
Length of the returned string.
MIT © Sindre Sorhus