No Description

isUndefined.js 147B

12345678910
  1. define(function () {
  2. // Is a given variable undefined?
  3. function isUndefined(obj) {
  4. return obj === void 0;
  5. }
  6. return isUndefined;
  7. });