mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
test: use const for all require() calls
PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
parent
1605a2e02a
commit
ff1efa6087
605 changed files with 1573 additions and 1552 deletions
|
@ -1,8 +1,8 @@
|
|||
'use strict';
|
||||
require('../common');
|
||||
var assert = require('assert');
|
||||
const assert = require('assert');
|
||||
|
||||
var http = require('http');
|
||||
const http = require('http');
|
||||
|
||||
|
||||
var serverSocket = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue