hasOwnProperty.js 307 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.hasOwnProperty = void 0;
  4. const has = Object.prototype.hasOwnProperty;
  5. function hasOwnProperty(obj, key) {
  6. return has.call(obj, key);
  7. }
  8. exports.hasOwnProperty = hasOwnProperty;
  9. //# sourceMappingURL=hasOwnProperty.js.map