UNPKG

qtsd-fork

Version:

Do not use this please

14 lines (10 loc) 222 B
var crypto = require('crypto') var max = Math.pow(2, 32) module.exports = random module.exports.cryptographic = true function random () { var buf = crypto .randomBytes(4) .readUInt32BE(0) return buf / max }