(value: bigint, scale: number)
| 133 | * @since 2.0.0 |
| 134 | */ |
| 135 | export const make = (value: bigint, scale: number): BigDecimal => { |
| 136 | const o = Object.create(BigDecimalProto) |
| 137 | o.value = value |
| 138 | o.scale = scale |
| 139 | return o |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Internal function used to create pre-normalized `BigDecimal`s. |
no outgoing calls
no test coverage detected