The default unit of currency to use when formatting currency. See utilities/format/number!NumberSettings.currency.
The default unit of currency to use when formatting currency. See utilities/format/number!NumberSettings.currency.
The default format to use when formatting dates. See utilities/format/date!DateFormatter.format.
The default format to use when formatting dates. See utilities/format/date!DateFormatter.format.
The default number of digits to show after the decimal point when formatting numbers. See utilities/format/number!NumberSettings.fractionalDigits.
The default number of digits to show after the decimal point when formatting numbers. See utilities/format/number!NumberSettings.fractionalDigits.
The default format to use when formatting numbers. See utilities/format/number!NumberFormatter.format.
The default format to use when formatting numbers. See utilities/format/number!NumberFormatter.format.
The default format to use when formatting times. See utilities/format/time!TimeFormatter.format.
The default format to use when formatting times. See utilities/format/time!TimeFormatter.format.
The time zone of a date being formatted. See utilities/format/date!DateFormatter.timeZone.
The time zone of a date being formatted. See utilities/format/date!DateFormatter.timeZone.
Converts the value of objects to strings based on the formats specified and inserts them into another string.
The format string that acts as a template. The
format string can contain one or more format items, which have this
syntax: {index[:format]}. The index is the zero-based index of the
argument whose string representation is to be included at this position
in the string. The optional format is a format string that controls how
the argument is converted into a string, if the argument is a Date
object or number. To include a literal { or } character in the
output, escape the character by repeating it twice in the format
string. This argument can also be a format options object instead.
Rest...args: unknown[]The values to substitute into the format string. Null and undefined values will be converted into empty strings.
A helper class for formatting strings.