UNPKG

@unglish/word-generator

Version:

A simple generator for creating unglish words.

9 lines (6 loc) 187 B
import { getRand } from "./random.js"; const pick = <T>(choices: T[]): T => { const index = Math.floor(getRand()() * choices.length); return choices[index]; }; export default pick;