MCPcopy Index your code
hub / github.com/ClearURLs/Addon / get

Method get

core_js/utils/Multimap.js:43–51  ·  view source on GitHub ↗
(key)

Source from the content-addressed store, hash-verified

41 return this._size;
42 }
43 get(key) {
44 const values = this._map.get(key);
45 if (values) {
46 return new Set(values);
47 }
48 else {
49 return new Set();
50 }
51 }
52 put(key, value) {
53 let values = this._map.get(key);
54 if (!values) {

Callers 6

genesisFunction · 0.45
putMethod · 0.45
hasEntryMethod · 0.45
deleteMethod · 0.45
deleteEntryMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected