@thewtex/vtk.js-esm
Version:
Visualization Toolkit for the Web
21 lines (16 loc) • 372 B
JavaScript
import { f as formatLocale } from './locale.js';
var locale;
var format;
var formatPrefix;
defaultLocale({
thousands: ",",
grouping: [3],
currency: ["$", ""]
});
function defaultLocale(definition) {
locale = formatLocale(definition);
format = locale.format;
formatPrefix = locale.formatPrefix;
return locale;
}
export { format as a, formatPrefix as f };