Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Christian Ziermann b8da0c7023 Initial commit pirms 4 gadiem
..
index.d.ts Initial commit pirms 4 gadiem
index.js Initial commit pirms 4 gadiem
license Initial commit pirms 4 gadiem
package.json Initial commit pirms 4 gadiem
readme.md Initial commit pirms 4 gadiem

readme.md

crypto-random-string Build Status

Generate a cryptographically strong random string

Can be useful for creating an identifier, slug, salt, fixture, etc.

Install

$ npm install crypto-random-string

Usage

const cryptoRandomString = require('crypto-random-string');

cryptoRandomString(10);
//=> '2cf05d94db'

API

cryptoRandomString(length)

Returns a hex string.

length

Type: number

Length of the returned string.

License

MIT © Sindre Sorhus