(fn)
| 15 | } |
| 16 | |
| 17 | function isAsync(fn) { |
| 18 | return supportsSymbol && fn[Symbol.toStringTag] === 'AsyncFunction'; |
| 19 | } |
| 20 | |
| 21 | function wrapAsync(asyncFn) { |
| 22 | return isAsync(asyncFn) ? asyncify(asyncFn) : asyncFn; |
no outgoing calls
no test coverage detected
searching dependent graphs…