bitburner-src/src/ui/numeralFormat.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

import * as numeral from 'numeral';
import 'numeral/locales/bg';
import 'numeral/locales/cs';
import 'numeral/locales/da-dk';
import 'numeral/locales/de';
import 'numeral/locales/en-au';
import 'numeral/locales/en-gb';
import 'numeral/locales/es';
import 'numeral/locales/fr';
import 'numeral/locales/hu';
import 'numeral/locales/it';
import 'numeral/locales/lv';
import 'numeral/locales/no';
import 'numeral/locales/pl';
import 'numeral/locales/ru';
2018-09-12 18:19:59 +02:00
/* eslint-disable class-methods-use-this */
class NumeralFormatter {
// Default Locale
defaultLocale: string = "en";
2018-09-12 18:19:59 +02:00
constructor() {
this.defaultLocale = 'en';
}
updateLocale(l: string): boolean {
if (numeral.locale(l) == null) {
console.warn(`Invalid locale for numeral: ${l}`);
2018-09-12 18:19:59 +02:00
numeral.locale(this.defaultLocale);
return false;
}
return true;
}
format(n: number, format: string): string {
// numeraljs doesnt properly format numbers that are too big or too small
if (Math.abs(n) < 1e-6) { n = 0; }
return numeral(n).format(format);
}
}
export const numeralWrapper = new NumeralFormatter();