Skip to content

Instantly share code, notes, and snippets.

@laziel
Created October 26, 2015 02:24
Show Gist options
  • Select an option

  • Save laziel/f73b65282ee7a5c8fe34 to your computer and use it in GitHub Desktop.

Select an option

Save laziel/f73b65282ee7a5c8fe34 to your computer and use it in GitHub Desktop.
ES6 EpsilonEqual
function isEpsilonEqual(a, b) {
return (Math.abs(a - b) < Number.EPSILON);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment