UNPKG

localforage-driver-memory

Version:

in-memory localforage driver that resets on page reload

10 lines 313 B
import { executeCallback } from 'localforage-driver-commons'; export function keys(callback) { var _this = this; var promise = this.ready().then(function () { return _this._dbInfo.mStore.keys(); }); executeCallback(promise, callback); return promise; } //# sourceMappingURL=keys.js.map