Skip to content

Instantly share code, notes, and snippets.

@toadkicker
Created August 22, 2013 19:34
Show Gist options
  • Save toadkicker/6311772 to your computer and use it in GitHub Desktop.
Save toadkicker/6311772 to your computer and use it in GitHub Desktop.
Does a variable exist?
Scope.prototype.find = function(name, options) {
if (this.check(name, options)) {
return true;
}
this.add(name, 'var');
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment