UNPKG

@daisugi/kintsugi

Version:

Kintsugi is a set of utilities to help build a fault tolerant services.

4 lines (3 loc) 120 B
export function randomBetween(min: number, max: number) { return Math.floor(Math.random() * (max - min + 1) + min); }