UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

11 lines (7 loc) 233 B
'use strict'; Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); function sample(arr) { const randomIndex = Math.floor(Math.random() * arr.length); return arr[randomIndex]; } exports.sample = sample;