anything-llm/frontend/src/utils/numbers.js

17 lines
398 B
JavaScript
Raw Normal View History

2023-06-03 19:28:07 -07:00
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);
}