mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
20 lines
614 B
ReStructuredText
20 lines
614 B
ReStructuredText
|
nFormat() Netscript Function
|
||
|
============================
|
||
|
|
||
|
.. js:function:: nFormat(n, format)
|
||
|
|
||
|
:param number n: Number to format
|
||
|
:param string format: Formatter
|
||
|
|
||
|
Converts a number into a string with the specified formatter. This uses the
|
||
|
`numeraljs <http://numeraljs.com/>`_ library, so the formatters must be compatible
|
||
|
with that.
|
||
|
|
||
|
This is the same function that the game itself uses to display numbers.
|
||
|
|
||
|
Examples::
|
||
|
|
||
|
nFormat(1.23e9, "$0.000a"); // Returns "$1.230b"
|
||
|
nFormat(12345.678, "0,0"); // Returns "12,346"
|
||
|
nFormat(0.84, "0.0%"); // Returns "84.0%
|