(key)
| 325 | }); |
| 326 | } |
| 327 | getIdsForKey(key) { |
| 328 | return this._mapPromise.then(() => { |
| 329 | return this._m.__keys__[key] || []; |
| 330 | }); |
| 331 | } |
| 332 | getAllDataForKey(key, options) { |
| 333 | options = Object.assign({ syncInBackground: true }, options); |
| 334 | return this.getIdsForKey(key).then(ids => { |
no outgoing calls
no test coverage detected