Skip to content

Instantly share code, notes, and snippets.

@roberthead
Last active August 29, 2015 14:10
Show Gist options
  • Save roberthead/ee164ab810ec802e82f2 to your computer and use it in GitHub Desktop.
Save roberthead/ee164ab810ec802e82f2 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