UNPKG

170 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: T[]): T[];