UNPKG

imagerot

Version:

A lightweight, cross-environment image library for applying unique effects via raw image buffers.

8 lines (7 loc) 235 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomize = void 0; const randomize = (min, max) => { return Math.floor(Math.random() * (max - min + 1) + min); }; exports.randomize = randomize;