mirror of
https://github.com/azure/login.git
synced 2026-06-06 00:17:07 +00:00
4 lines
104 B
JavaScript
4 lines
104 B
JavaScript
// Is a given variable undefined?
|
|
export default function isUndefined(obj) {
|
|
return obj === void 0;
|
|
}
|