Skip to content

Commit 60e2666

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/child_process.js

Lines changed: 1 addition & 1 deletion
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)