Current section

Files

Jump to
excessibility assets node_modules underscore modules isUndefined.js
Raw

assets/node_modules/underscore/modules/isUndefined.js

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