Content deleted Content added
DreamRimmer (talk | contribs) fixes |
DreamRimmer (talk | contribs) uniqueKey |
||
Line 918:
rfcs.forEach(rfc => {
const uniqueKey =
if
const existing = rfcMap.get(uniqueKey);
if (!existing.topics.includes(rfc.topic)) {
existing.topics.push(rfc.topic);
}
} else {
rfcMap.set(
...rfc,
topics: [rfc.topic]
|