/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/node/polyfills/https_esm.ts
12 строк
394 B
Bartek Iwańczuk
perf(ext/node): convert child_process, fs, http, http2, https, inspector to lazy-loaded JS (#33967)
12 май 2026, 01:27
Не верифицирован
12 май 2026, 01:27
05e01ff
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { core } from "ext:core/mod.js"; const mod = core.loadExtScript("ext:deno_node/https.ts"); export const Agent = mod.Agent; export const Server = mod.Server; export const createServer = mod.createServer; export const get = mod.get; export const globalAgent = mod.globalAgent; export const request = mod.request; export default mod;