mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
19 lines
585 B
ReStructuredText
19 lines
585 B
ReStructuredText
tFormat() Netscript Function
|
|
==============================
|
|
|
|
.. js:function:: tFormat(milliseconds[, milliPrecision = false])
|
|
|
|
:RAM cost: 0 GB
|
|
|
|
:param string milliseconds: Number of millisecond to format.
|
|
:param boolean milliPrecision: Format time with subsecond precision.
|
|
:returns: Formatted string.
|
|
|
|
Format time to a readable string.
|
|
|
|
Examples:
|
|
|
|
.. code-block:: javascript
|
|
|
|
ns.print(ns.tFormat(123456789)) //logs "1 day 10 hours 17 minutes 36 seconds"
|
|
ns.print(ns.tFormat(123456789,true)) //logs "1 day 10 hours 17 minutes 36.789 seconds" |