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

Method hasEntry

core_js/utils/Multimap.js:69–75  ·  view source on GitHub ↗
(key, value)

Source from the content-addressed store, hash-verified

67 return this._map.has(key);
68 }
69 hasEntry(key, value) {
70 const values = this._map.get(key);
71 if (!values) {
72 return false;
73 }
74 return values.has(value);
75 }
76 delete(key) {
77 const values = this._map.get(key);
78 if (values && this._map.delete(key)) {

Callers

nothing calls this directly

Calls 2

hasMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected