Skip to content

Instantly share code, notes, and snippets.

@painedpineapple
Created February 21, 2020 17:02
Show Gist options
  • Save painedpineapple/b4bf54f25c3b3b97bb466bf36dbc2a13 to your computer and use it in GitHub Desktop.
Save painedpineapple/b4bf54f25c3b3b97bb466bf36dbc2a13 to your computer and use it in GitHub Desktop.
type formatUSDProps = {
amount: float,
decimalPlaces: int,
};
[@bs.module] external formatUSDUtil: formatUSDProps => float = "format-usd";
let format0 = amount => formatUSDUtil({amount, decimalPlaces: 0});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment