Skip to content

Instantly share code, notes, and snippets.

@arekbartnik
Created December 16, 2024 20:18
Show Gist options
  • Save arekbartnik/b89e75381cd04416d33355d209151c44 to your computer and use it in GitHub Desktop.
Save arekbartnik/b89e75381cd04416d33355d209151c44 to your computer and use it in GitHub Desktop.
export function rounded(number: number, decimals: number = 2): number {
return Math.round(number * Math.pow(10, decimals)) / Math.pow(10, decimals);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment