()
| 314 | })); |
| 315 | } |
| 316 | clearMap() { |
| 317 | this.removeItem('map').then(() => { |
| 318 | this._m = this._initMap(); |
| 319 | }); |
| 320 | } |
| 321 | clearMapForKey(key) { |
| 322 | return this._mapPromise.then(() => { |
| 323 | let tasks = (this._m.__keys__[key] || []).map(id => this.remove({ key, id })); |
nothing calls this directly
no test coverage detected