Skip to content

Commit 60e2666

Browse files
committed
Remove superfluous 'new'
1 parent 1cf26e2 commit 60e2666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/child_process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var Pipe;
3333
function createPipe(ipc) {
3434
// Lazy load
3535
if (!Pipe) {
36-
Pipe = new process.binding('pipe_wrap').Pipe;
36+
Pipe = process.binding('pipe_wrap').Pipe;
3737
}
3838

3939
return new Pipe(ipc);

0 commit comments

Comments
 (0)