UNPKG

@daisugi/kintsugi

Version:

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

7 lines 257 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomBetween = randomBetween; function randomBetween(min, max) { return Math.floor(Math.random() * (max - min + 1) + min); } //# sourceMappingURL=random_between.js.map