MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / _req

Method _req

runtime/src/cache/idb.js:31–36  ·  view source on GitHub ↗
(req)

Source from the content-addressed store, hash-verified

29 }
30
31 _req(req) {
32 return new Promise((res, rej) => {
33 req.onsuccess = () => res(req.result);
34 req.onerror = () => rej(req.error);
35 });
36 }
37
38 getBytes(hash) {
39 return this._req(this._tx('cas', 'readonly').get(hash));

Callers 6

getBytesMethod · 0.95
putBytesMethod · 0.95
saveLockfileMethod · 0.95
clearMethod · 0.95
setVersionMethod · 0.95
getVersionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected