UNPKG

@xmr-core/xmr-mymonero-libs

Version:

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

10 lines 310 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function popRandElement(list) { var idx = Math.floor(Math.random() * list.length); var val = list[idx]; list.splice(idx, 1); return val; } exports.popRandElement = popRandElement; //# sourceMappingURL=arr_utils.js.map