* Ensure spring objects exist for each defined key, and attach the * `ctrl` to them for observation. * * The queue is expected to contain `createUpdate` results.
(ctrl: Controller<any>, queue: ControllerQueue[number][])
| 583 | * The queue is expected to contain `createUpdate` results. |
| 584 | */ |
| 585 | function prepareKeys(ctrl: Controller<any>, queue: ControllerQueue[number][]) { |
| 586 | each(queue, props => { |
| 587 | prepareSprings(ctrl.springs, props, key => { |
| 588 | return createSpring(key, ctrl) |
| 589 | }) |
| 590 | }) |
| 591 | } |
no test coverage detected
searching dependent graphs…