Created
September 29, 2021 16:32
-
-
Save sibelius/b9678c5832985a036149c3369b3a8361 to your computer and use it in GitHub Desktop.
convert a float to cents
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 floatToCents = (value: number): number => { | |
return parseInt((value * 100).toFixed(2), 10); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment