kopia lustrzana https://github.com/nolanlawson/pinafore
				
				
				
			
		
			
				
	
	
		
			10 wiersze
		
	
	
		
			357 B
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			10 wiersze
		
	
	
		
			357 B
		
	
	
	
		
			JavaScript
		
	
	
| import { accountsCache, clearCache, metaCache, statusesCache } from './cache'
 | |
| import { deleteDatabase } from './databaseLifecycle'
 | |
| 
 | |
| export async function clearDatabaseForInstance (instanceName) {
 | |
|   clearCache(statusesCache, instanceName)
 | |
|   clearCache(accountsCache, instanceName)
 | |
|   clearCache(metaCache, instanceName)
 | |
|   await deleteDatabase(instanceName)
 | |
| }
 |