Passed
Push — main ( f60dac...79dde4 )
by Dylan
06:04
created

src/cnum.ts

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 14
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 14
ccs 4
cts 4
cp 1
c 0
b 0
f 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
/**
2
 * @class Comfortably Numbers
3
 * @name cnum
4
 */
5
class cnum {
6
  static get version(): string {
7 1
    return '0.0.8'
8
  }
9
}
10
11 1
export default cnum
12 2
export {Rat} from './Rat'
13
export {Polyrat} from './Polyrat'
14