(nextConfig)
| 258 | } |
| 259 | |
| 260 | function updateConfig(nextConfig) { |
| 261 | nextConfig = nextConfig || getConfigFromDOM(); |
| 262 | store.setState({ |
| 263 | config: Object.assign({}, store.state.config, nextConfig), |
| 264 | }); |
| 265 | |
| 266 | configDidUpdate(); |
| 267 | } |
| 268 | |
| 269 | // Map config to various properties & apply side effects |
| 270 | function configDidUpdate() { |
no test coverage detected