UNPKG

@broxus/js-core

Version:

MobX-based JavaScript Core library

8 lines (7 loc) 263 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getRandomInt = getRandomInt; function getRandomInt(bits = 32) { // eslint-disable-next-line no-bitwise return Math.abs(~~(Math.random() * (2 ** bits)) | 0).toString(); }