* Explicitly remove the unique identifier for the FS handler. * @param {string} uid * @returns {Promise }
(uid)
| 37 | * @returns {Promise<boolean>} |
| 38 | */ |
| 39 | async deleteFSHandler(uid) { |
| 40 | const had = await idb.has(uid); |
| 41 | if (had) await idb.delete(uid); |
| 42 | return had; |
| 43 | }, |
| 44 | }; |