(imported, fn)
| 6 | return imported.default || imported; |
| 7 | }; |
| 8 | const expectIfAvailable = (imported, fn) => { |
| 9 | if (imported) fn(imported); |
| 10 | }; |
| 11 | |
| 12 | const assertBuiltin = await load(import("assert")); |
| 13 | const asyncHooks = await load(import("async_hooks")); |