hensei-web/node_modules/core-js/modules/_has.js
2020-09-11 06:44:42 -07:00

4 lines
120 B
JavaScript

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