(value: Decimal)
| 22 | * Use this at the final step when returning values. |
| 23 | */ |
| 24 | export function toNumber(value: Decimal): number { |
| 25 | return value.toNumber() |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Format a Decimal to a fixed string for database storage. |
no outgoing calls
no test coverage detected