//#region src/collection/shuffle.d.ts /** * Creates an array of shuffled values, using a version of the Fisher-Yates shuffle * @param collection - The collection to shuffle * @returns Returns the new shuffled array * @example * const arr = [1, 2, 3, 4, 5]; * shuffle(arr); // => shuffled array */ declare function shuffle(collection: T[]): T[]; //#endregion export { shuffle }; //# sourceMappingURL=shuffle.d.cts.map