(s: string)
| 1347 | * @since 4.0.0 |
| 1348 | */ |
| 1349 | export const fromStringUnsafe = (s: string): BigDecimal => { |
| 1350 | return Option.getOrThrowWith(fromString(s), () => new Error(`Invalid numerical string: ${s}`)) |
| 1351 | } |
| 1352 | |
| 1353 | /** |
| 1354 | * Formats a `BigDecimal` as a string. |
nothing calls this directly
no test coverage detected