(fn)
| 35 | } |
| 36 | |
| 37 | export const isAsyncFunction = function (fn) { |
| 38 | if (!fn) return false |
| 39 | return fn[Symbol.toStringTag] === 'AsyncFunction' |
| 40 | } |
| 41 | |
| 42 | export const resolveImportModulePath = function (modulePath) { |
| 43 | // 1. If it's an absolute path, convert to a file:// URL |
no outgoing calls
no test coverage detected