| 165 | ); |
| 166 | |
| 167 | const isInitialStateLiftable = getInitialState => { |
| 168 | if (!getInitialState || !(getInitialState.value)) { |
| 169 | return true; |
| 170 | } |
| 171 | |
| 172 | return hasSingleReturnStatement(getInitialState.value); |
| 173 | }; |
| 174 | |
| 175 | // --------------------------------------------------------------------------- |
| 176 | // Checks if the module uses mixins or accesses deprecated APIs. |
no test coverage detected