UNPKG

@xmr-core/xmr-mymonero-libs

Version:

A collection of utilities for building ontop of a MyMonero compatible API

7 lines (6 loc) 162 B
export function popRandElement<T>(list: T[]) { const idx = Math.floor(Math.random() * list.length); const val = list[idx]; list.splice(idx, 1); return val; }