4 lines
76 B
JavaScript
4 lines
76 B
JavaScript
|
|
module.exports = function (obj, key) {
|
|
return obj.hasOwnProperty(key);
|
|
}; |