This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/storage/idb/store.js

16 lines
310 B
JavaScript
Raw Normal View History

2019-02-05 04:51:50 +05:30
import QueryTarget from "./query-target.js";
2019-02-07 03:34:39 +05:30
import StoreIndex from "./store-index.js";
2019-02-05 04:51:50 +05:30
export default class Store extends QueryTarget {
constructor(store) {
this._store = store;
}
_queryTarget() {
return this._store;
}
index(indexName) {
2019-02-07 03:34:39 +05:30
return new StoreIndex(this._store.index(indexName));
2019-02-05 04:51:50 +05:30
}
}