Files
setup-helm/node_modules/underscore/modules/isUndefined.js

5 lines
104 B
JavaScript
Raw Normal View History

2022-06-27 14:17:15 -04:00
// Is a given variable undefined?
export default function isUndefined(obj) {
return obj === void 0;
}