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

Method entries

core_js/utils/Multimap.js:99–109  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

97 this._size = 0;
98 }
99 entries() {
100 const self = this;
101 function* gen() {
102 for (const [key, values] of self._map.entries()) {
103 for (const value of values) {
104 yield [key, value];
105 }
106 }
107 }
108 return gen();
109 }
110 values() {
111 const self = this;
112 function* gen() {

Callers 7

forEachMethod · 0.95
[Symbol.iterator]Method · 0.95
all.min.jsFile · 0.80
storageAsJSONFunction · 0.80
initStorageFunction · 0.80
importSettingsFunction · 0.80
genMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected