in library/markdown-parser/models/article.ts [121:125]
5 lines of code
3 McCabe index (conditional complexity)
function checkArticleData(name: string, authors: string[]): void {
if (authors && !Array.isArray(authors)) {
throw new Error(`${name}: authors should be array`);
}
}