UNPKG

es-toolkit

Version:

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

7 lines (5 loc) 138 B
function sample(arr) { const randomIndex = Math.floor(Math.random() * arr.length); return arr[randomIndex]; } export { sample };