2019-01-02 18:12:18 +00:00
|
|
|
const IndexedDB = require('./indexeddb.js');
|
|
|
|
const Memory = require('./memory.js');
|
2014-05-23 18:36:23 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
IndexedDB: IndexedDB,
|
|
|
|
Default: IndexedDB,
|
2019-01-02 18:12:18 +00:00
|
|
|
Memory: Memory
|
2014-05-23 18:36:23 +00:00
|
|
|
};
|