(vals: WaveObjUpdate[])
| 279 | } |
| 280 | |
| 281 | function updateWaveObjects(vals: WaveObjUpdate[]) { |
| 282 | for (const val of vals) { |
| 283 | updateWaveObject(val); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | // gets the value of a WaveObject from the cache. |
| 288 | // should provide getFn if it is available (e.g. inside of a jotai atom) |
no test coverage detected