Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export const SESSION_STORAGE_MIGRATION_STATUS = 'migration_status';
export const storeMigrationStatus = ( status ) => {
window.sessionStorage.setItem( SESSION_STORAGE_MIGRATION_STATUS, status );
};
export const clearMigrationStatus = () => {
window.sessionStorage.removeItem( SESSION_STORAGE_MIGRATION_STATUS );
};
export const retrieveMigrationStatus = () => {
return window.sessionStorage.getItem( SESSION_STORAGE_MIGRATION_STATUS );
};