Skip to content

Instantly share code, notes, and snippets.

@mlhaufe
Last active October 27, 2015 16:09
Show Gist options
  • Save mlhaufe/9d25732a8489c04f7839 to your computer and use it in GitHub Desktop.
Save mlhaufe/9d25732a8489c04f7839 to your computer and use it in GitHub Desktop.
Object walk
// <https://twitter.com/sroucheray/status/658913220292452352>
Object.walk = (o, path)=>path.split('.').reduce((o,k)=>o && o[k], o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment