Skip to content

Commit c8fa8cc

Browse files
brendanashworthyosuke-furukawa
authored andcommitted
streams: use strict on _stream_wrap
A Mostly Harmless™ change to enable 'use strict' mode in _stream_wrap, bringing it in line with /all/ the other modules. PR-URL: #1279 Reviewed-By: Brian White (@mscdex) <[email protected]> Reviewed-By: Roman Reiss (@silverwind) <[email protected]> Reviewed-By: Yosuke Furukawa (@yosuke-furukawa) <[email protected]>
1 parent 77c2da1 commit c8fa8cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/_stream_wrap.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
const util = require('util');
24
const Socket = require('net').Socket;
35
const JSStream = process.binding('js_stream').JSStream;

0 commit comments

Comments
 (0)