mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 14:31:52 +01:00
8 lines
266 B
JavaScript
Vendored
8 lines
266 B
JavaScript
Vendored
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')
|
|
}
|