UNPKG

imagerot

Version:

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

8 lines (7 loc) 230 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.arrayPick = void 0; const arrayPick = (array) => { return array[Math.floor(Math.random() * array.length)]; }; exports.arrayPick = arrayPick;