GT2/Ejectable/node_modules/core-js/modules/$.has.js

4 lines
117 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
var hasOwnProperty = {}.hasOwnProperty;
module.exports = function(it, key){
return hasOwnProperty.call(it, key);
};