mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
18 lines
600 B
ReStructuredText
18 lines
600 B
ReStructuredText
tFormat() Netscript Function
|
|
============================
|
|
|
|
.. js:function:: tFormat(milliseconds[, milliPrecision=false])
|
|
|
|
:RAM cost: 0 GB
|
|
:param number milliseconds: Amount of milliseconds to format.
|
|
:param number milliPrecision: Display time with millisecond precision.
|
|
:returns: milliseconds in the "D M H S" format
|
|
|
|
Example:
|
|
|
|
.. code-block:: javascript
|
|
|
|
tFormat(3000); // returns: "3 seconds"
|
|
tFormat(10000000); // returns: "2 hours 46 minutes 40 seconds"
|
|
tFormat(10000023, true); // returns: "2 hours 46 minutes 40.023 seconds"
|