Skip to content

Instantly share code, notes, and snippets.

@minitech
Created May 28, 2013 17:22
Show Gist options
  • Save minitech/5664436 to your computer and use it in GitHub Desktop.
Save minitech/5664436 to your computer and use it in GitHub Desktop.
// Put anything here to make the final assertion true.
function isSafe(input) {
return /^\d+([.e]\d+)?$/.test(input);
}
isSafe(input) && typeof eval(input) !== 'number'
@SomeKittens
Copy link

input = 12
eval = function() { return ''; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment