Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created September 29, 2021 16:32
Show Gist options
  • Save sibelius/b9678c5832985a036149c3369b3a8361 to your computer and use it in GitHub Desktop.
Save sibelius/b9678c5832985a036149c3369b3a8361 to your computer and use it in GitHub Desktop.
convert a float to cents
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