MCPcopy Index your code
hub / github.com/nodejs/node / multiMapRemove

Function multiMapRemove

test/fixtures/snapshot/typescript.js:1652–1660  ·  view source on GitHub ↗
(key, value)

Source from the content-addressed store, hash-verified

1650 return values;
1651 }
1652 function multiMapRemove(key, value) {
1653 var values = this.get(key);
1654 if (values) {
1655 unorderedRemoveItem(values, value);
1656 if (!values.length) {
1657 this.delete(key);
1658 }
1659 }
1660 }
1661 function createUnderscoreEscapedMultiMap() {
1662 return createMultiMap();
1663 }

Callers

nothing calls this directly

Calls 3

unorderedRemoveItemFunction · 0.85
getMethod · 0.65
deleteMethod · 0.65

Tested by

no test coverage detected