Total Complexity | 4 |
Complexity/F | 1 |
Lines of Code | 14 |
Function Count | 4 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | export class HtmlColumn { |
||
2 | public readonly isRaw = true; |
||
3 | |||
4 | constructor(private readonly text: string, private readonly html: string) {} |
||
5 | |||
6 | public getRaw(): string { |
||
7 | return this.html; |
||
8 | } |
||
9 | |||
10 | public toString() { |
||
11 | return this.text; |
||
12 | } |
||
13 | } |
||
14 |