mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-26 19:14:32 +02:00
Began refactoring Corporation implementation into separate modules (and converted to TypeScript). Rebalanced material starting prices and market properties (demand, competition, market price)
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
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';
|
||||
|
||||
/* eslint-disable class-methods-use-this */
|
||||
|
||||
class NumeralFormatter {
|
||||
// Default Locale
|
||||
defaultLocale: string = "en";
|
||||
|
||||
constructor() {
|
||||
this.defaultLocale = 'en';
|
||||
}
|
||||
|
||||
updateLocale(l: string): boolean {
|
||||
if (numeral.locale(l) == null) {
|
||||
console.warn(`Invalid locale for numeral: ${l}`);
|
||||
|
||||
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();
|
||||
Reference in New Issue
Block a user