(specifier)
| 26 | const handledNativeRuntimeRequires = new Set(); |
| 27 | |
| 28 | function isAllowedSpecifier(specifier) { |
| 29 | if (builtins.has(specifier) || specifier.startsWith('node:')) return true; |
| 30 | if (optionalRuntimeRequires.has(specifier)) return true; |
| 31 | if (handledNativeRuntimeRequires.has(specifier)) return true; |
| 32 | return false; |
| 33 | } |
| 34 | |
| 35 | const errors = []; |
| 36 |