Skip to content

Commit

Permalink
streams: use strict on _stream_wrap
Browse files Browse the repository at this point in the history
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) <mscdex@mscdex.net>
Reviewed-By: Roman Reiss (@silverwind) <me@silverwind.io>
Reviewed-By: Yosuke Furukawa (@yosuke-furukawa)
<yosuke.furukawa@gmail.com>
  • Loading branch information
brendanashworth authored and yosuke-furukawa committed Mar 27, 2015
1 parent 77c2da1 commit c8fa8cc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/_stream_wrap.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const util = require('util');
const Socket = require('net').Socket;
const JSStream = process.binding('js_stream').JSStream;
Expand Down

0 comments on commit c8fa8cc

Please sign in to comment.