mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
function normalize(comments) {
|
|
comments.forEach(function (comment) {
|
|
delete comment.context.file;
|
|
normalize(comment.members.instance);
|
|
normalize(comment.members.static);
|
|
});
|
|
return comments;
|
|
}
|
|
|
|
module.exports = normalize;
|