DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
166 Bytes
export function optional(f) {
return f == null ? null : required(f);
}
export function required(f) {
if (typeof f !== "function") throw new Error;
return f;
}