setup-maven/node_modules/underscore/modules/isUndefined.js

5 lines
104 B
JavaScript
Raw Normal View History

2022-06-28 08:39:30 +00:00
// Is a given variable undefined?
export default function isUndefined(obj) {
return obj === void 0;
}