Skip to content

Instantly share code, notes, and snippets.

@retrohacker
Created May 8, 2014 04:48
Show Gist options
  • Save retrohacker/bae31f89015a9e441bf8 to your computer and use it in GitHub Desktop.
Save retrohacker/bae31f89015a9e441bf8 to your computer and use it in GitHub Desktop.
function isDefined(result) {
if( result!=null &&
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