UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

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 }