/ [decimalSeparator] Symbol for separating fraction. Default: point. | string | |
[decimalPseudoSeparators] Symbols to be replaced with decimalSeparator . Default: | string[] | |
[thousandSeparator] Symbol for separating thousands. Default: non-breaking space. | string | |
[thousandSeparatorPattern] A function that defines how integer digits are split into groups. Receives raw integer digits as a string; returns them as an ordered array of groups (left-to-right). Default: standard 3-digit Western grouping driven by | (digits: string) => readonly string[] | |
[minimumFractionDigits] The minimum number of fraction digits to use. A value with a smaller number of fraction digits than this number will be right-padded with zeros (to the specified length). Default: | number | |
[maximumFractionDigits] The maximum number of digits after Use Default: | number | |
[min] The lowest permitted value. Default: | bigint | number | |
[max] The greatest permitted value. Default: | bigint | number | |
[prefix] A prefix symbol, like currency. Default: empty string (no prefix). | string | |
[postfix] A postfix symbol, like currency. Default: empty string (no postfix). | string | |
[minusSign] A minus symbol. Default: | string | |
[negativePattern] Order of prefix and minus sign Default: | 'prefixFirst' | 'minusFirst' |