Sha256: 5bf45cf09ff3b58b813103c2755954caefe76ea232ff3a546e5af5255511ec91
Contents?: true
Size: 246 Bytes
Versions: 71
Compression:
Stored size: 246 Bytes
Contents
// Unique ID creation requires a high quality random # generator. In node.js // this is pretty straight-forward - we use the crypto API. var crypto = require('crypto'); module.exports = function nodeRNG() { return crypto.randomBytes(16); };
Version data entries
71 entries across 62 versions & 16 rubygems