UNPKG

millify

Version:

Converts long numbers to pretty, human-readable strings

8 lines (7 loc) 240 B
import { MillifyOptions } from "./options"; /** * millify converts long numbers to human-readable strings. */ declare function millify(value: number, options?: Partial<MillifyOptions>): string; export { millify }; export default millify;