Skip to content

Instantly share code, notes, and snippets.

@markdrake
Forked from roberthead/roundTo.coffee
Last active August 29, 2015 14:26
Show Gist options
  • Save markdrake/e912853634d7ccaf61ad to your computer and use it in GitHub Desktop.
Save markdrake/e912853634d7ccaf61ad to your computer and use it in GitHub Desktop.
Rounding with precision in CoffeeScript
Math.roundTo = (number, precision) ->
Math.round(number * 10**precision) / 10**precision
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment