Skip to content

Instantly share code, notes, and snippets.

@sethdavis512
Created May 1, 2018 19:40
Show Gist options
  • Save sethdavis512/407b10a04ab34b49f3b69418e492f720 to your computer and use it in GitHub Desktop.
Save sethdavis512/407b10a04ab34b49f3b69418e492f720 to your computer and use it in GitHub Desktop.
// Avoid "Cannot read property of undefined"
// https://silvantroxler.ch/2017/avoid-cannot-read-property-of-undefined/
export function getSafe(fn) {
try {
return fn();
} catch (e) {
return undefined;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment