MCPcopy Index your code
hub / github.com/pyscript/pyscript / deleteFSHandler

Function deleteFSHandler

core/src/sync.js:39–43  ·  view source on GitHub ↗

* Explicitly remove the unique identifier for the FS handler. * @param {string} uid * @returns {Promise }

(uid)

Source from the content-addressed store, hash-verified

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};

Callers

nothing calls this directly

Calls 2

hasMethod · 0.80
deleteMethod · 0.45

Tested by

no test coverage detected