NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/core-js-pure/internals/has.js
2023-09-14 14:47:11 +08:00

6 lines
121 B
JavaScript

var hasOwnProperty = {}.hasOwnProperty;
module.exports = function (it, key) {
return hasOwnProperty.call(it, key);
};