Irina Glushko 2389e7160b HW1 done | 3 lat temu | |
---|---|---|
.. | ||
index.js | 3 lat temu | |
license | 3 lat temu | |
package.json | 3 lat temu | |
readme.md | 3 lat temu |
Generate a cryptographically strong random string
Can be useful for creating an identifier, slug, salt, fixture, etc.
$ npm install --save crypto-random-string
const cryptoRandomString = require('crypto-random-string');
cryptoRandomString(10);
//=> '2cf05d94db'
Type: number
Length of the returned string.
MIT © Sindre Sorhus