6 lines
120 B
JavaScript
Executable file
6 lines
120 B
JavaScript
Executable file
// Is a given variable undefined?
|
|
function isUndefined(obj) {
|
|
return obj === void 0;
|
|
}
|
|
|
|
module.exports = isUndefined;
|