summaryrefslogtreecommitdiff
path: root/lib/_stream_passthrough.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_stream_passthrough.js')
-rw-r--r--lib/_stream_passthrough.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_stream_passthrough.js b/lib/_stream_passthrough.js
index 8898f1891d..30952d436e 100644
--- a/lib/_stream_passthrough.js
+++ b/lib/_stream_passthrough.js
@@ -6,8 +6,8 @@
module.exports = PassThrough;
-var Transform = require('_stream_transform');
-var util = require('util');
+const Transform = require('_stream_transform');
+const util = require('util');
util.inherits(PassThrough, Transform);
function PassThrough(options) {