Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1017 Bytes

bitburner.ns.nformat.md

File metadata and controls

40 lines (24 loc) · 1017 Bytes

Home > bitburner > NS > nFormat

NS.nFormat() method

Warning: This API is now obsolete.

Use ns.formatNumber, formatRam, or formatPercent instead. Will be removed in 2.4.

Format a number using the numeral library. This function is deprecated and will be removed in 2.4.

Signature:

nFormat(n: number, format: string): string;

Parameters

Parameter Type Description
n number Number to format.
format string Formatting options. See http://numeraljs.com/\#format for valid formats.

Returns:

string

Formatted number.

Remarks

RAM cost: 0 GB

Converts a number into a string with the specified format options. See http://numeraljs.com/\#format for documentation on format strings supported.

This function is deprecated and will be removed in 2.3.