millify
Version:
Converts long numbers to pretty, human-readable strings
21 lines (20 loc) • 363 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.defaultOptions = void 0;
/**
* Default options for Millify.
*/
exports.defaultOptions = {
lowercase: false,
precision: 1,
space: false,
units: [
"",
"K",
"M",
"B",
"T",
"P",
"E", // Quintillion
],
};
;