UNPKG

@polkadot/util

Version:
6 lines (5 loc) 179 B
/** * @name arrayShuffle * @description Shuffles the input array (unlike sort, this is not done in-place) */ export declare function arrayShuffle<T>(input: readonly T[]): T[];