isUndefined.js 120 Bytes Raw Blame History Permalink 1 2 3 4 5 6 // Is a given variable undefined? function isUndefined(obj) { return obj === void 0; } module.exports = isUndefined;