Skip to content

Instantly share code, notes, and snippets.

@highercomve
Last active March 11, 2019 20:37
Show Gist options
  • Select an option

  • Save highercomve/8074371a83566c9b1568d0104f1154cf to your computer and use it in GitHub Desktop.

Select an option

Save highercomve/8074371a83566c9b1568d0104f1154cf to your computer and use it in GitHub Desktop.
Object path resolution even thought some part get undefined
function resolve (obj, path, defaultReturn) {
return path.split('.').reduce(function(prev, curr) {
return prev && prev.hasOwnProperty(curr) ? prev[curr] : defaultReturn
}, obj)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment