(promises: Promise<any>[])
| 138 | ): Promise<Value> => new promise(resolver); |
| 139 | |
| 140 | export const promiseAll = async (promises: Promise<any>[]) => |
| 141 | promise.all(promises); |
| 142 | |
| 143 | export const structuredClone = GLOBAL.structuredClone as <T>(value: T) => T; |
| 144 |
no outgoing calls
no test coverage detected
searching dependent graphs…