Skip to content

Instantly share code, notes, and snippets.

@qborreda
Created March 13, 2017 15:50
Show Gist options
  • Save qborreda/0207fb8be189464829b3a3fdeb19fa5b to your computer and use it in GitHub Desktop.
Save qborreda/0207fb8be189464829b3a3fdeb19fa5b to your computer and use it in GitHub Desktop.
const getProp = (obj, key) =>
key.split('.').reduce( (o, x) =>
(typeof o == "undefined" || o === null) ? o : o[x]
, obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment