Created
September 4, 2021 23:59
-
-
Save mattbajorek/5d23724a4ebed67831a21db626c18fc6 to your computer and use it in GitHub Desktop.
Class transformer decimal object to JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const DecimalToString = (decimals: number = 2) => (decimal?: Decimal) => decimal?.toFixed?.(decimals) || decimal; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment