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