( ctrl: Controller<any>, queue: ControllerQueue )
| 326 | * Warning: Props might be mutated. |
| 327 | */ |
| 328 | export function flushUpdateQueue( |
| 329 | ctrl: Controller<any>, |
| 330 | queue: ControllerQueue |
| 331 | ) { |
| 332 | return Promise.all(queue.map(props => flushUpdate(ctrl, props))).then( |
| 333 | results => getCombinedResult(ctrl, results) |
| 334 | ) |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * Warning: Props might be mutated. |
no test coverage detected
searching dependent graphs…