AdminLTE/plugins/filterizr/utils/shuffle.d.ts
REJack e3888aee85
created new gallery page
- added filterizr to plugins
- created gallery demo
2019-08-28 11:42:16 +02:00

7 lines
235 B
TypeScript
Executable file

/**
* Fisher-Yates shuffle ES6 non-mutating implementation.
* @param {Array} array the array to shuffle
* @return {Array} shuffled array without mutating the initial array.
*/
export declare const shuffle: (array: any[]) => any[];