12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var localforage_driver_commons_1 = require("localforage-driver-commons");
- function clear(callback) {
- var _this = this;
- var promise = this.ready().then(function () {
- _this._dbInfo.mStore.clear();
- });
- localforage_driver_commons_1.executeCallback(promise, callback);
- return promise;
- }
- exports.clear = clear;
- //# sourceMappingURL=clear.js.map
|