(id)
| 319 | } |
| 320 | |
| 321 | static isBuiltin(id) { |
| 322 | return BuiltinModule.canBeRequiredWithoutScheme(id) || ( |
| 323 | typeof id === 'string' && |
| 324 | StringPrototypeStartsWith(id, 'node:') && |
| 325 | BuiltinModule.canBeRequiredByUsers(StringPrototypeSlice(id, 5)) |
| 326 | ); |
| 327 | } |
| 328 | |
| 329 | static getSchemeOnlyModuleNames() { |
| 330 | return ArrayFrom(schemelessBlockList); |
nothing calls this directly
no test coverage detected