Skip to content

Instantly share code, notes, and snippets.

@DScheglov
Last active June 2, 2020 07:35
Show Gist options
  • Save DScheglov/62a6a15db6b17e42ad62fd7b895cc84e to your computer and use it in GitHub Desktop.
Save DScheglov/62a6a15db6b17e42ad62fd7b895cc84e to your computer and use it in GitHub Desktop.
export const amountToString = amount => (
amount < 0 ? `(${-amount})` : `${amount}`
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment