Skip to content

Instantly share code, notes, and snippets.

@sfelix-martins
Last active December 3, 2019 19:38
Show Gist options
  • Save sfelix-martins/71e805dac8a2262321bc0b64dffe20ec to your computer and use it in GitHub Desktop.
Save sfelix-martins/71e805dac8a2262321bc0b64dffe20ec to your computer and use it in GitHub Desktop.
// https://stackoverflow.com/a/45322101
function object_value(key, obj) {
return key.split('.').reduce(function(prev, curr) {
return prev ? prev[curr] : null
}, obj || self)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment