We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58615e5 commit 5416926Copy full SHA for 5416926
test/parallel/test-tls-no-cert-required.js
@@ -1,12 +1,12 @@
1
'use strict';
2
-var assert = require('assert');
3
-var common = require('../common');
+const assert = require('assert');
+const common = require('../common');
4
5
if (!common.hasCrypto) {
6
common.skip('missing crypto');
7
return;
8
}
9
-var tls = require('tls');
+const tls = require('tls');
10
11
// Omitting the cert or pfx option to tls.createServer() should not throw.
12
// AECDH-NULL-SHA is a no-authentication/no-encryption cipher and hence
0 commit comments