/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/node/polyfills/_tls_wrap_esm.js
13 строк
488 B
Bartek Iwańczuk
perf(ext/node): convert net, _tls_common, _tls_wrap to lazy-loaded JS (#33997)
12 май 2026, 17:59
Не верифицирован
12 май 2026, 17:59
a567a4e
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { core } from "ext:core/mod.js"; const mod = core.loadExtScript("ext:deno_node/_tls_wrap.js"); export const checkServerIdentity = mod.checkServerIdentity; export const connect = mod.connect; export const createServer = mod.createServer; export const DEFAULT_CIPHERS = mod.DEFAULT_CIPHERS; export const Server = mod.Server; export const TLSSocket = mod.TLSSocket; export const unfqdn = mod.unfqdn; export default mod.default;