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 64f17d9 commit 29a8325Copy full SHA for 29a8325
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