UNPKG

107 BJavaScriptView Raw
1module.exports = function has (object, key) {
2 return Object.prototype.hasOwnProperty.call(object, key)
3}