Passed
Pull Request — master (#442)
by
unknown
06:24
created

src/Infrastructure/Tables/HtmlColumn.ts   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 8
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 5
mnd 0
bc 0
fnc 2
dl 0
loc 8
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A HtmlColumn.toString 0 3 1
1
export class HtmlColumn {
2
  constructor(public readonly text: string, public readonly html: string) {}
3
4
  public toString() {
5
    return this.text;
6
  }
7
}
8