(s: string)
| 953 | * @category constructors |
| 954 | */ |
| 955 | export const unsafeFromString = (s: string): BigDecimal => |
| 956 | Option.getOrThrowWith(fromString(s), () => new Error("Invalid numerical string")) |
| 957 | |
| 958 | /** |
| 959 | * Formats a given `BigDecimal` as a `string`. |
nothing calls this directly
no test coverage detected