Skip to content

Instantly share code, notes, and snippets.

@lsongdev
Created September 28, 2017 08:55
Show Gist options
  • Save lsongdev/9f55b93c79c22af6ee68242f63663e6a to your computer and use it in GitHub Desktop.
Save lsongdev/9f55b93c79c22af6ee68242f63663e6a to your computer and use it in GitHub Desktop.
const get = (obj, path) => path.split('.').reduce((o, p) => o && o[p], obj);
@lsongdev
Copy link
Author

const a = {
  b: {
    c: 1
  }
};
get(a, 'b.c') // 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment