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