(
value: number | null | undefined,
formatOptions: FormatOptions = {},
)
| 67 | } |
| 68 | |
| 69 | decimals( |
| 70 | value: number | null | undefined, |
| 71 | formatOptions: FormatOptions = {}, |
| 72 | ): string { |
| 73 | const options = { ...FORMAT_DEFAULT_OPTIONS, ...formatOptions }; |
| 74 | return this.number(value, options); |
| 75 | } |
| 76 | |
| 77 | get typingSpeedUnit(): TypingSpeedUnit { |
| 78 | return this.config.typingSpeedUnit; |