UNPKG

math-helper-functions

Version:

Helper with misc. math functions such as sums, averages, max, min, etc

5 lines (4 loc) 264 B
export declare function isEmptyString(val: any): val is string; export declare function isNonEmptyString(val: any): val is string; export declare function isNonEmptyArray<T>(value: any): value is T[]; export declare function isEmptyArray(value: any): value is [];