File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ function closePendingHandle(target) {
351
351
}
352
352
353
353
354
- ChildProcess . prototype . spawn = function ( options ) {
354
+ ChildProcess . prototype . spawn = function spawn ( options ) {
355
355
let i = 0 ;
356
356
357
357
validateObject ( options , 'options' ) ;
@@ -489,7 +489,7 @@ function onSpawnNT(self) {
489
489
}
490
490
491
491
492
- ChildProcess . prototype . kill = function ( sig ) {
492
+ ChildProcess . prototype . kill = function kill ( sig ) {
493
493
494
494
const signal = sig === 0 ? sig :
495
495
convertToValidSignal ( sig === undefined ? 'SIGTERM' : sig ) ;
@@ -523,12 +523,12 @@ ChildProcess.prototype[SymbolDispose] = function() {
523
523
} ;
524
524
525
525
526
- ChildProcess . prototype . ref = function ( ) {
526
+ ChildProcess . prototype . ref = function ref ( ) {
527
527
if ( this . _handle ) this . _handle . ref ( ) ;
528
528
} ;
529
529
530
530
531
- ChildProcess . prototype . unref = function ( ) {
531
+ ChildProcess . prototype . unref = function unref ( ) {
532
532
if ( this . _handle ) this . _handle . unref ( ) ;
533
533
} ;
534
534
You can’t perform that action at this time.
0 commit comments