(
resolver: (
resolve: (value: Value) => void,
reject: (reason?: any) => void,
) => void,
)
| 131 | export const getArg = <T>(value: T): T => value; |
| 132 | |
| 133 | export const promiseNew = <Value>( |
| 134 | resolver: ( |
| 135 | resolve: (value: Value) => void, |
| 136 | reject: (reason?: any) => void, |
| 137 | ) => void, |
| 138 | ): Promise<Value> => new promise(resolver); |
| 139 | |
| 140 | export const promiseAll = async (promises: Promise<any>[]) => |
| 141 | promise.all(promises); |
no outgoing calls
no test coverage detected
searching dependent graphs…