Skip to content

Instantly share code, notes, and snippets.

@gmmorris
Last active February 7, 2016 21:29
Helper functions for the Safe Access Proxy article
const isObject = obj => obj && typeof obj === 'object';
const hasKey = (obj, key) => key in obj;
const Undefined = new Proxy({}, {
get: function(target, name){
return Undefined;
}
});
const either = (val,fallback) => (val === Undefined? fallback : val);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment