Skip to content

Instantly share code, notes, and snippets.

@aaronsnoswell
Created December 13, 2011 04:51
Show Gist options
  • Save aaronsnoswell/1470656 to your computer and use it in GitHub Desktop.
Save aaronsnoswell/1470656 to your computer and use it in GitHub Desktop.
Easy js definition checking
/**
* Checks if the given object is defined
*/
function isdef(o) {
if(typeof(o)=="undefined") return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment