added tFormat to represent times.

This commit is contained in:
Olivier Gagnon
2021-03-12 14:32:07 -05:00
parent 3db440fd95
commit c76110b575
4 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
tFormat() Netscript Function
============================
.. js:function:: tFormat(milliseconds)
:RAM cost: 0 GB
:param number milliseconds: Amount of milliseconds to format.
: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"