1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-23 07:26:40 +02:00
keeweb/app/scripts/storage/io-cache.js
2019-09-15 14:16:32 +02:00

8 lines
233 B
JavaScript

import { Launcher } from 'comp/launcher';
import { IoFileCache } from 'storage/io-file-cache';
import { IoBrowserCache } from 'storage/io-browser-cache';
const IoCache = Launcher ? IoFileCache : IoBrowserCache;
export { IoCache };