Skip to content

Instantly share code, notes, and snippets.

@mattbajorek
Created September 4, 2021 23:59
Show Gist options
  • Select an option

  • Save mattbajorek/5d23724a4ebed67831a21db626c18fc6 to your computer and use it in GitHub Desktop.

Select an option

Save mattbajorek/5d23724a4ebed67831a21db626c18fc6 to your computer and use it in GitHub Desktop.
Class transformer decimal object to JSON
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