2020-05-16 14:40:49 +02:00
|
|
|
'use strict';
|
2016-01-25 16:20:36 -06:00
|
|
|
module.exports = function removePrivateApi() {
|
|
|
|
return {
|
|
|
|
name: 'remove-private-api',
|
|
|
|
description: 'Prevent the private apis from being rendered',
|
|
|
|
$runBefore: ['rendering-docs'],
|
2021-09-27 22:09:05 +02:00
|
|
|
$process: (docs) => docs.filter((doc) => !doc.private && (!doc.tags || !doc.tags.tagsByName.get('hidden'))),
|
2017-03-23 22:07:59 -04:00
|
|
|
};
|
2016-01-25 16:20:36 -06:00
|
|
|
};
|