()
| 301 | /******/ } |
| 302 | /******/ |
| 303 | /******/ function hotUpdateDownloaded() { |
| 304 | /******/ hotSetStatus("ready"); |
| 305 | /******/ var deferred = hotDeferred; |
| 306 | /******/ hotDeferred = null; |
| 307 | /******/ if (!deferred) return; |
| 308 | /******/ if (hotApplyOnUpdate) { |
| 309 | /******/ // Wrap deferred object in Promise to mark it as a well-handled Promise to |
| 310 | /******/ // avoid triggering uncaught exception warning in Chrome. |
| 311 | /******/ // See https://bugs.chromium.org/p/chromium/issues/detail?id=465666 |
| 312 | /******/ Promise.resolve() |
| 313 | /******/ .then(function() { |
| 314 | /******/ return hotApply(hotApplyOnUpdate); |
| 315 | /******/ }) |
| 316 | /******/ .then( |
| 317 | /******/ function(result) { |
| 318 | /******/ deferred.resolve(result); |
| 319 | /******/ }, |
| 320 | /******/ function(err) { |
| 321 | /******/ deferred.reject(err); |
| 322 | /******/ } |
| 323 | /******/ ); |
| 324 | /******/ } else { |
| 325 | /******/ var outdatedModules = []; |
| 326 | /******/ for (var id in hotUpdate) { |
| 327 | /******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) { |
| 328 | /******/ outdatedModules.push(toModuleId(id)); |
| 329 | /******/ } |
| 330 | /******/ } |
| 331 | /******/ deferred.resolve(outdatedModules); |
| 332 | /******/ } |
| 333 | /******/ } |
| 334 | /******/ |
| 335 | /******/ function hotApply(options) { |
| 336 | /******/ if (hotStatus !== "ready") |
no test coverage detected