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) {
351351}
352352
353353
354- ChildProcess . prototype . spawn = function ( options ) {
354+ ChildProcess . prototype . spawn = function spawn ( options ) {
355355 let i = 0 ;
356356
357357 validateObject ( options , 'options' ) ;
@@ -489,7 +489,7 @@ function onSpawnNT(self) {
489489}
490490
491491
492- ChildProcess . prototype . kill = function ( sig ) {
492+ ChildProcess . prototype . kill = function kill ( sig ) {
493493
494494 const signal = sig === 0 ? sig :
495495 convertToValidSignal ( sig === undefined ? 'SIGTERM' : sig ) ;
@@ -523,12 +523,12 @@ ChildProcess.prototype[SymbolDispose] = function() {
523523} ;
524524
525525
526- ChildProcess . prototype . ref = function ( ) {
526+ ChildProcess . prototype . ref = function ref ( ) {
527527 if ( this . _handle ) this . _handle . ref ( ) ;
528528} ;
529529
530530
531- ChildProcess . prototype . unref = function ( ) {
531+ ChildProcess . prototype . unref = function unref ( ) {
532532 if ( this . _handle ) this . _handle . unref ( ) ;
533533} ;
534534
You can’t perform that action at this time.
0 commit comments