Skip to content

Instantly share code, notes, and snippets.

@gmmorris
Last active August 3, 2016 21:29
Show Gist options
  • Save gmmorris/e0296d69656dc174d5cc to your computer and use it in GitHub Desktop.
Save gmmorris/e0296d69656dc174d5cc to your computer and use it in GitHub Desktop.
example of usage for the Safe Access Proxy article
const mySafeObj = safe({
name : 'Anakin',
mother : {
name : 'Shmi'
}
});
console.log(mySafeObj.name); // returns "Anakin"
console.log(mySafeObj.mother.name); // returns "Shmi"
console.log(mySafeObj.father.name); // returns a reference to Undefined (our Undefined, not Javascript's undefined)
console.log(either(mySafeObj.father.father.name, false)); // returns our fallback value, of false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment