MCPcopy Index your code
hub / github.com/pywebio/PyWebIO / remove

Method remove

webiojs/src/utils.ts:43–50  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

41 };
42
43 remove(key: string) {
44 if (key in this.map) {
45 delete this.map[key];
46 this.keys.splice(this.keys.indexOf(key), 1);
47 } else {
48 return console.error("LRUMap: key:%s not in map when call `remove`", key);
49 }
50 };
51
52}
53

Callers 15

start_test_serverFunction · 0.80
test_defer_callFunction · 0.80
handle_messageMethod · 0.80
dispatch_ctrl_messageMethod · 0.80
handle_output_ctlMethod · 0.80
handle_messageMethod · 0.80
handle_messageMethod · 0.80
datatable.tsFile · 0.80
update_inputMethod · 0.80
on_closeFunction · 0.80
IiFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_defer_callFunction · 0.64