UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

18 lines (16 loc) 438 B
'use strict'; if (global.crypto && global.crypto.getRandomValues) { module.exports.randomBytes = function(length) { var bytes = new Uint8Array(length); global.crypto.getRandomValues(bytes); return bytes; }; } else { module.exports.randomBytes = function(length) { var bytes = new Array(length); for (var i = 0; i < length; i++) { bytes[i] = Math.floor(Math.random() * 256); } return bytes; }; }