UNPKG

@ondemos/core

Version:

A cryptographic commitment scheme with implied order of ownership wasm module for nodejs and the browser.

11 lines 284 B
/** * @function * Fisher-Yates shuffle of array. * * @param array: The array to randomly shuffle. * * @returns Promise<T[]> */ declare const arrayRandomShuffle: <T>(array: T[]) => Promise<T[]>; export default arrayRandomShuffle; //# sourceMappingURL=arrayRandomShuffle.d.ts.map