UNPKG

brella-transition

Version:
11 lines (10 loc) 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pass = pass; exports.randomBetween = randomBetween; function pass(value) { return value; } function randomBetween(min, max, int = false) { return (int ? Math.round : pass)(Math.random() * (max - min)) + min; }