(errors)
| 1401 | return enqueueTaskImpl(task); |
| 1402 | } |
| 1403 | function aggregateErrors(errors) { |
| 1404 | return 1 < errors.length && "function" === typeof AggregateError |
| 1405 | ? new AggregateError(errors) |
| 1406 | : errors[0]; |
| 1407 | } |
| 1408 | function popActScope(prevActQueue, prevActScopeDepth) { |
| 1409 | prevActScopeDepth !== actScopeDepth - 1 && |
| 1410 | console.error( |
no outgoing calls
no test coverage detected
searching dependent graphs…