Files
profile/themes/keepit/node_modules/randomfill/index.js
Spencer Pincott 97737ca1ae Initial commit
2024-07-15 22:20:13 -04:00

8 lines
266 B
JavaScript

var crypto = require('crypto')
if (typeof crypto.randomFill === 'function' && typeof crypto.randomFillSync === 'function') {
exports.randomFill = crypto.randomFill
exports.randomFillSync = crypto.randomFillSync
} else {
module.exports = require('./browser')
}