UNPKG

@chris-lewis/fitbit-utils

Version:

Common utility modules for common tasks across projects.

9 lines 227 B
/** * Random integer in range 0 - max. * * @param {number} max - Maximum value, inclusive. * @returns {number} Random number. */ export var randomInt = function randomInt(max) { return Math.round(Math.random() * max); };