Updated Stock market UI for new stock Max Shares restriction. Added Netscript function for getting a stock's max shares

This commit is contained in:
danielyxie
2019-01-09 02:06:49 -08:00
parent 0effdac6d1
commit 9db7aee34e
11 changed files with 2280 additions and 594 deletions
+4
View File
@@ -43,6 +43,10 @@ class NumeralFormatter {
formatMoney(n: number): string {
return this.format(n, "$0.000a");
}
formatBigNumber(n: number): string {
return this.format(n, "0.000a");
}
}
export const numeralWrapper = new NumeralFormatter();