(type, dispatch)
| 255 | } |
| 256 | |
| 257 | function getStore(type, dispatch) { |
| 258 | if (!stores[type]) { |
| 259 | stores[type] = tryGetWebStore(backEnds[type], dispatch); |
| 260 | } |
| 261 | return stores[type]; |
| 262 | } |
| 263 | |
| 264 | const noopTransform = { |
| 265 | extract: propValue => propValue, |
no test coverage detected
searching dependent graphs…