/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/import_map/internal_specifiers/node_http.js
5 строк
236 B
Nathan Whitaker
fix(core): don't resolve internal module imports with the user's import map (#36303)
27 июл 2026, 11:10
Не верифицирован
27 июл 2026, 11:10
985d218
Код
Авторство
О чём код?
// `node:http`'s polyfill internally imports `node:net`, which the import map // remaps. Internal modules must not go through the user's import map. import http from "node:http"; console.log("createServer:", typeof http.createServer);