UNPKG

@braze/web-sdk

Version:

Braze SDK for web sites and other JS platforms.

6 lines (5 loc) 137 B
export const randomInclusive = (t, a) => ( (t = Math.ceil(t)), (a = Math.floor(a)), Math.floor(Math.random() * (a - t + 1)) + t );