isUndef.js 83 B

12345
  1. exports = function(val) {
  2. return val === void 0;
  3. };
  4. module.exports = exports;