Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
100 Bytes
export default function hasOwnProp(a, b) {
return Object.prototype.hasOwnProperty.call(a, b);
}