UNPKG

@jeremyckahn/farmhand

Version:
6 lines (4 loc) 224 B
import { random } from '../common/utils.js' export const chooseRandomIndex = <T>(list: T[]): number => // TODO: Fix statistical bias by using Math.floor(random() * list.length). Math.round(random() * (list.length - 1))