Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
214 Bytes
const copy: ((str?: string, options?: object) => void) & {
lastStr?: string;
lastOptions?: object;
} = (str = '', options = {}) => {
copy.lastStr = str;
copy.lastOptions = options;
};
export default copy;