DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
238 Bytes
export function getOptionUpdater(options) {
return function (key, value) {
if (value === undefined)
return;
const store = options[key];
if (store) {
store.set(value);
}
};
}