You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			627 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			24 lines
		
	
	
		
			627 B
		
	
	
	
		
			TypeScript
		
	
| import { Storage } from './storage';
 | |
| 
 | |
| async function markEverDone() {
 | |
|   await Storage.put('chromiumRegistrationDoneEver', '');
 | |
| }
 | |
| async function markDone() {
 | |
|   await markEverDone();
 | |
|   await Storage.put('chromiumRegistrationDone', '');
 | |
| }
 | |
| function isDone() {
 | |
|   return Storage.get('chromiumRegistrationDone') === '';
 | |
| }
 | |
| function everDone() {
 | |
|   return (
 | |
|     Storage.get('chromiumRegistrationDoneEver') === '' ||
 | |
|     Storage.get('chromiumRegistrationDone') === ''
 | |
|   );
 | |
| }
 | |
| async function remove() {
 | |
|   await Storage.remove('chromiumRegistrationDone');
 | |
| }
 | |
| 
 | |
| export const Registration = { markEverDone, markDone, isDone, everDone, remove };
 |