Created
February 21, 2020 17:02
-
-
Save painedpineapple/b4bf54f25c3b3b97bb466bf36dbc2a13 to your computer and use it in GitHub Desktop.
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
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