src/index.ts
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 11
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 7
mnd 0
bc 0
fnc 0
dl 0
loc 11
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
ccs 4
cts 4
cp 1
1 1
import version from './version'
2
3
class jrid {
4
  static get version(): string {
5 1
    return version
6
  }
7
}
8
9 1
export default jrid
10
export { version }
11