UNPKG

simple-statistics

Version:
10 lines (8 loc) 198 B
/** * https://simple-statistics.github.io/docs/#shuffleinplace */ declare function shuffleInPlace<T extends any[]>( x: T, randomSource?: () => number ): T; export default shuffleInPlace;