Skip to content

Instantly share code, notes, and snippets.

@retrohacker
Last active August 29, 2015 14:01
Show Gist options
  • Save retrohacker/499ab10909914d8c6c4b to your computer and use it in GitHub Desktop.
Save retrohacker/499ab10909914d8c6c4b to your computer and use it in GitHub Desktop.
function isDefined(result) {
if( typeof result !== "undefined" &&
typeof result["row"] !== "undefined" &&
typeof result["row"]["$"] !== "undefined" &&
typeof result["row"]["$"]["CreationDate"] !== "undefined") {
return true
} else {
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment