blob: 9916de30819af6413b6996a9bda3ab0ec561bf32 [file] [edit]
function hasOwnProperty(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
if (hasOwnProperty({}, "prop_name")) {
console.log("yeah");
}