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

11 lines
147 B
JavaScript
Raw Normal View History

define(function () {
// Is a given variable undefined?
function isUndefined(obj) {
return obj === void 0;
}
return isUndefined;
});