Call a function once per spring value
(iterator: (spring: SpringValue, key: string) => void)
| 254 | |
| 255 | /** Call a function once per spring value */ |
| 256 | each(iterator: (spring: SpringValue, key: string) => void) { |
| 257 | eachProp(this.springs, iterator as any) |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Subscribe to loop iteration restarts on this controller. Returns an |