Skip to content

Instantly share code, notes, and snippets.

@istarkov
Last active January 12, 2017 02:26
Show Gist options
  • Save istarkov/0ba94abff98db07c19efdc88ebd350a2 to your computer and use it in GitHub Desktop.
Save istarkov/0ba94abff98db07c19efdc88ebd350a2 to your computer and use it in GitHub Desktop.
// no string get
const get = (fn, def) => {
try {
return fn();
} catch (e) {
return def;
}
};
// usage example
const a = { x: { y: 1 } };
const r0 = get(() => a.x.w.z, 101);
const r1 = get(() => a.x.y)
console.log(r0, r1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment