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