-
-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support tls connection #164
Conversation
Small js fix
Fix ts
New feature finished. No more commits |
src/client.ts
Outdated
@@ -21,10 +21,20 @@ export class MongoClient { | |||
if (typeof options === "string") { | |||
options = parse(options); | |||
} | |||
const conn = await Deno.connect({ | |||
var conn; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not use any
at will. Don't use var
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. Fixed.
Clean code
Fix Deno fmt
Small fix
The new feature is ok, and the new url parser is much more generic and powerful. I finish my commits. You can Merge If you want. |
Also has minor fixes. |
No description provided.