mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 02:53:03 +08:00
10 lines
326 B
JavaScript
10 lines
326 B
JavaScript
'use strict';
|
|
module.exports = function removePrivateApi() {
|
|
return {
|
|
name: 'remove-private-api',
|
|
description: 'Prevent the private apis from being rendered',
|
|
$runBefore: ['rendering-docs'],
|
|
$process: (docs) => docs.filter((doc) => !doc.private && (!doc.tags || !doc.tags.tagsByName.get('hidden'))),
|
|
};
|
|
};
|