BREAKING CHANGE: rename TLS APIs to camel case (#4888)

This commit renames all APIs containing "TLS" to use camel case
(connectTLS -> connectTls, etc.)
This commit is contained in:
Bartek Iwańczuk 2020-04-24 23:29:14 +02:00 committed by GitHub
parent 6efdacddf3
commit 6a37e4426e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 46 additions and 46 deletions

View file

@ -107,7 +107,7 @@ export { resources, close } from "./ops/resources.ts";
export { signal, signals, Signal, SignalStream } from "./signals.ts";
export { FileInfo, statSync, lstatSync, stat, lstat } from "./ops/fs/stat.ts";
export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
export { connectTLS, listenTLS, startTLS } from "./tls.ts";
export { connectTls, listenTls, startTls } from "./tls.ts";
export { truncateSync, truncate } from "./ops/fs/truncate.ts";
export { isatty, setRaw } from "./ops/tty.ts";
export { umask } from "./ops/fs/umask.ts";