1 | export { default as compose } from 'compose-function'; |
||
0 ignored issues
–
show
|
|||
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
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. ![]() |
|||
9 |
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.