(specifier: string)
| 152 | } |
| 153 | |
| 154 | export function isNodeBuiltin(specifier: string): boolean { |
| 155 | return specifier.startsWith("node:") || nodeBuiltins.has(specifier.replace(/\/.*/, "")); |
| 156 | } |
| 157 | |
| 158 | // https://github.com/evanw/esbuild/blob/9d1777f23d9b64c186345223d92f319e59388d8b/internal/resolver/resolver.go#L2802-L2874 |
| 159 | const nodeBuiltins = new Set([ |
no outgoing calls
no test coverage detected