Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Last active June 7, 2017 12:57
Show Gist options
  • Save bmorelli25/a3c42a08134968f8ad1c3e2f9001e2aa to your computer and use it in GitHub Desktop.
Save bmorelli25/a3c42a08134968f8ad1c3e2f9001e2aa to your computer and use it in GitHub Desktop.
Mocha Testing - v1
cToF = function(celsius) {
if(!Number.isInteger(celsius)) return undefined;
return celsius * 9 / 5 + 32;
}
fToC = function(fahrenheit) {
if(!Number.isInteger(fahrenheit)) return undefined;
return (fahrenheit - 32) * 5 / 9;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment