1234567891011 |
- import { executeCallback, normaliseKey } from 'localforage-driver-commons';
- export function removeItem(key$, callback) {
- var _this = this;
- key$ = normaliseKey(key$);
- var promise = this.ready().then(function () {
- _this._dbInfo.mStore.rm(key$);
- });
- executeCallback(promise, callback);
- return promise;
- }
- //# sourceMappingURL=removeItem.js.map
|