src/index.js
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 8
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 4
Bugs 0 Features 2
Metric Value
cc 0
c 4
b 0
f 2
nc 1
dl 0
loc 8
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 2
1
export { default as compose } from 'compose-function';
0 ignored issues
show
Bug introduced by
The variable default seems to be never declared. If this is a global, consider adding a /** global: default */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
2
3
export { default as toMiddleware } from './convertor';
4
export { default as addMeta } from './add-meta';
5
export { default as tagService } from './tag-service';
6
export { default as enhancedRender } from './renderer';
7
export { default as createEnhancer } from './enhancer-creator';
8
export { isPromise } from './utils';
0 ignored issues
show
Bug introduced by
The variable isPromise seems to be never declared. If this is a global, consider adding a /** global: isPromise */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
9