flst / upstream /emscripten /test /js_optimizer /JSDCE-hasOwnProperty.js
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
162 Bytes
function hasOwnProperty(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
if (hasOwnProperty({}, 'prop_name')) {
console.log('yeah');
}