Edit File: isUndefined.js
// Is a given variable undefined? function isUndefined(obj) { return obj === void 0; } module.exports = isUndefined;
Back to File Manager