CRAP | Complexity | Coverage | Location |
---|---|---|---|
6.00 | 2 | 0/4 (0.00%) | crap/html-report/html-report.service.ts (L81 - L88) |
Handlebars.registerHelper("highlightName", (s: string): string => {
const match = s.match(/^(?<prefix>.*)'(?<name>.*)'(?<suffix>.*)$/);
if (!match) {
return s;
}
return `${match.groups?.prefix}'<b>${match.groups?.name}</b>${match.groups?.suffix}'`;
});