setup-maven-cached/node_modules/underscore/amd/isUndefined.js

11 lines
147 B
JavaScript
Raw Permalink Normal View History

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