UNPKG

@unglish/word-generator

Version:

A simple generator for creating unglish words.

7 lines (5 loc) 223 B
import { getRand } from "./random.js"; export default (min: number, max: number, returnAsInt?: boolean): number => { const result = getRand()() * (max - min) + min; return returnAsInt ? Math.floor(result) : result; };