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