CRAP Complexity Coverage Location
12.00 3 0/3 (0.00%) crap/html-report/html-report.service.ts (L93 - L98)
        Handlebars.registerHelper("functionLineNumber", (report: FunctionReport): string => {
            if (report.end.line != undefined && report.start.line !== report.end.line) {
                return `L${report.start.line} - L${report.end.line}`;
            }
            return `L${report.start.line}`;
        });