diff options
author | Luca Casonato <hello@lcas.dev> | 2021-10-29 17:13:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 17:13:31 +0200 |
commit | b7341438f29de88f3458b32a835bfad560bda52e (patch) | |
tree | d58500fae822d3436bb513eb0c6cd9626048ab41 /runtime/js/90_deno_ns.js | |
parent | 8e0fd1dca1dbf5dd30595a859640067020506668 (diff) |
feat: stabilize Deno.startTls (#12581)
This commit stabilizes `Deno.startTls` and removes `certFile` from the
`StartTlsOptions`.
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 40c744fc1..f858a93eb 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -88,6 +88,7 @@ listen: __bootstrap.net.listen, connectTls: __bootstrap.tls.connectTls, listenTls: __bootstrap.tls.listenTls, + startTls: __bootstrap.tls.startTls, shutdown: __bootstrap.net.shutdown, fstatSync: __bootstrap.fs.fstatSync, fstat: __bootstrap.fs.fstat, @@ -125,7 +126,6 @@ listen: __bootstrap.netUnstable.listen, connect: __bootstrap.netUnstable.connect, listenDatagram: __bootstrap.netUnstable.listenDatagram, - startTls: __bootstrap.tls.startTls, umask: __bootstrap.fs.umask, futime: __bootstrap.fs.futime, futimeSync: __bootstrap.fs.futimeSync, |