UNPKG

approx

Version:

Give me an approximate number around this one (for setTimeout/setInterval etc).

4 lines (3 loc) 80 B
module.exports = function approx(n) { return ( n/2 + Math.random() * n) | 0 }