mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-04 03:38:15 +00:00
17 lines
398 B
JavaScript
17 lines
398 B
JavaScript
|
const Formatter = Intl.NumberFormat("en", { notation: "compact" });
|
||
|
|
||
|
export function numberWithCommas(input) {
|
||
|
return input.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
||
|
}
|
||
|
|
||
|
export function nFormatter(input) {
|
||
|
return Formatter.format(input);
|
||
|
}
|
||
|
|
||
|
export function dollarFormat(input) {
|
||
|
return new Intl.NumberFormat("en-us", {
|
||
|
style: "currency",
|
||
|
currency: "USD",
|
||
|
}).format(input);
|
||
|
}
|