mirror of
https://github.com/azure/login.git
synced 2026-06-06 22:47:06 +00:00
6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
// Is a given variable undefined?
|
|
function isUndefined(obj) {
|
|
return obj === void 0;
|
|
}
|
|
|
|
module.exports = isUndefined;
|