Skip to content

Instantly share code, notes, and snippets.

@gmmorris
Last active January 6, 2017 12:01
Example of how to fix the original function using the safe function
const safeDarthVader = safe({
name : 'Anakin',
mother : {
name : 'Shmi'
}
});
function getFatherName(person) {
return person.father.name
}
function getName(person) {
return person.name
}
let darthVadersFather = either(getFatherName(safeDarthVader), `${getName(safeDarthVader)} has no father`);
console.log(darthVadersFather); // Prints 'Anakin has no father'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment