perfrunner-reporters
Version:
Home of the perfrunner reporters
6 lines (5 loc) • 347 B
TypeScript
export declare const init0: (length: number) => number[];
export declare const initWithEmptyString: (length: number) => string[];
export declare const splitBy: <T>(arr: T[], min: number) => T[][];
export declare const groupBy: <T>(array: T[], hashFunc: (el: T) => string) => T[][];
export declare const isAllSame: <T>(array: T[]) => boolean;