Skip to content

Instantly share code, notes, and snippets.

@kitsune7
Created January 9, 2019 18:16
Show Gist options
  • Save kitsune7/797cdc0bf10b408d8ac20e837f6c0a43 to your computer and use it in GitHub Desktop.
Save kitsune7/797cdc0bf10b408d8ac20e837f6c0a43 to your computer and use it in GitHub Desktop.
/**
* Returns a number that will have up to `max` decimal places.
*/
function maxToFixed (num, max) {
return parseFloat(num.toFixed(max))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment