blob: b3f977afed58d7d347cb14e188ae4fc6a63bca57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
Encode a SummaryArticle to JSON
@param {SummaryArticle}
@return {Object}
*/
function encodeSummaryArticle(article) {
return {
title: article.getTitle(),
level: article.getLevel(),
depth: article.getDepth(),
anchor: article.getAnchor(),
url: article.getUrl(),
path: article.getPath(),
articles: article.getArticles()
.map(encodeSummaryArticle).toJS()
};
}
module.exports = encodeSummaryArticle;
|