UNPKG

tamda

Version:

Practical functional programming library for TypeScript

9 lines (8 loc) 227 B
/** * Compares two values, `a` and `b`, on equality, greater than or lesser than. * @returns * - 1 if `a > b` * - -1 if `b > a` * - 0 otherwise */ export declare function compareValue(a: any, b: any): 0 | 1 | -1;