github-pages-deploy-action/node_modules/core-js-pure/internals/has.js
2020-03-06 22:45:40 -05:00

6 lines
121 B
JavaScript

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