Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | /**
* Cross-platform storage service
* Uses SecureStore on native, localStorage on web
*/
import { Platform } from 'react-native';
import * as SecureStore from 'expo-secure-store';
const isWeb = Platform.OS === 'web';
export const storage = {
async getItem(key: string): Promise<string | null> {
if (isWeb) {
return localStorage.getItem(key);
}
return SecureStore.getItemAsync(key);
},
async setItem(key: string, value: string): Promise<void> {
if (isWeb) {
localStorage.setItem(key, value);
return;
}
return SecureStore.setItemAsync(key, value);
},
async deleteItem(key: string): Promise<void> {
if (isWeb) {
localStorage.removeItem(key);
return;
}
return SecureStore.deleteItemAsync(key);
},
};
export default storage;
|