keeweb/app/scripts/storage/io-cache.js

8 lines
233 B
JavaScript
Raw Normal View History

2019-09-15 14:16:32 +02:00
import { Launcher } from 'comp/launcher';
import { IoFileCache } from 'storage/io-file-cache';
import { IoBrowserCache } from 'storage/io-browser-cache';
2017-02-19 18:51:52 +01:00
2019-09-15 14:16:32 +02:00
const IoCache = Launcher ? IoFileCache : IoBrowserCache;
2017-02-19 18:51:52 +01:00
2019-09-15 14:16:32 +02:00
export { IoCache };