UNPKG

auspice

Version:

Web app for visualizing pathogen evolution

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 }