hz-zhhq-app/node_modules/core-js/internals/has.js

8 lines
205 B
JavaScript
Raw Normal View History

2025-01-22 10:53:47 +08:00
var toObject = require('../internals/to-object');
var hasOwnProperty = {}.hasOwnProperty;
module.exports = Object.hasOwn || function hasOwn(it, key) {
return hasOwnProperty.call(toObject(it), key);
};