UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 133 B
/** * Returns a random item from the input array */ declare const pickRandom: (arr: any[]) => any; export default pickRandom;