
The disambiguation needs to be done earlier so that the auto-link-code post-processor can benefit from it. PR Close #22494
4 lines
150 B
JavaScript
4 lines
150 B
JavaScript
module.exports = function disambiguateByDeprecated() {
|
|
return (alias, originatingDoc, docs) => docs.filter(doc => doc.deprecated === undefined);
|
|
};
|