(arr)
| 43 | |
| 44 | /** @param {Array<() => void>} arr */ |
| 45 | export function run_all(arr) { |
| 46 | for (var i = 0; i < arr.length; i++) { |
| 47 | arr[i](); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * TODO replace with Promise.withResolvers once supported widely enough |
no outgoing calls
no test coverage detected