Fix tutorial getting started link

change tformat.rst file name
This commit is contained in:
Mughur
2023-02-08 03:46:42 +02:00
parent e7588de19c
commit 67fde6167b
3 changed files with 13 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
tFormat() Netscript Function
==============================
.. js:function:: tFormat(milliseconds[, milliPrecision])
:RAM cost: 0 GB
:param string milliseconds: Number of millisecond to format.
:param boolean milliPrecision: Format time with subsecond precision. Defaults to false.
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"