UNPKG

@unglish/word-generator

Version:

A simple generator for creating unglish words.

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