UNPKG

179 BTypeScriptView Raw
1/**
2 * @name arrayShuffle
3 * @description Shuffles the input array (unlike sort, this is not done in-place)
4 */
5export declare function arrayShuffle<T>(input: readonly T[]): T[];