1var hasOwnProperty = {}.hasOwnProperty; 2module.exports = function (it, key) { 3 return hasOwnProperty.call(it, key); 4}; 5