MCPcopy
hub / github.com/authts/oidc-client-ts / get

Method get

src/WebStorageStateStore.ts:32–38  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

30 }
31
32 public async get(key: string): Promise<string | null> {
33 this._logger.create(`get('${key}')`);
34
35 key = this._prefix + key;
36 const item = await this._store.getItem(key);
37 return item;
38 }
39
40 public async remove(key: string): Promise<string | null> {
41 this._logger.create(`remove('${key}')`);

Callers

nothing calls this directly

Calls 2

getItemMethod · 0.65
createMethod · 0.45

Tested by

no test coverage detected