isUndefined.js 104 Bytes Raw Blame History Permalink 1 2 3 4 // Is a given variable undefined? export default function isUndefined(obj) { return obj === void 0; }