DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
175 Bytes
export function nopropagation(event) {
event.stopImmediatePropagation();
}
export default function(event) {
event.preventDefault();
event.stopImmediatePropagation();
}