UNPKG

makit

Version:

Make in JavaScript done right!

12 lines (11 loc) 285 B
/** * 输出可读的数字,例如: * * 123456 -> 123,456 * 1234.5 -> 1,234.5 */ export declare function humanReadable(n: number): string; /** * 数字关系的字符表示,用于日志 */ export declare function relation(lhs: number, rhs: number): ">" | "<" | "=" | "?";