@@ -588,7 +588,7 @@ function payloadFileSync(pointer) {
588588 process . pkg . path . resolve = function resolve ( ) {
589589 const args = cloneArgs ( arguments ) ;
590590 args . unshift ( path . dirname ( ENTRYPOINT ) ) ;
591- return path . resolve . apply ( path , args ) ; // eslint-disable-line prefer-spread
591+ return path . resolve . apply ( path , args ) ;
592592 } ;
593593} ) ( ) ;
594594
@@ -722,7 +722,6 @@ function payloadFileSync(pointer) {
722722 return fName ;
723723 }
724724
725- // eslint-disable-next-line prefer-arrow-callback
726725 const uncompressExternally = function uncompressExternally ( dock ) {
727726 if ( ! dock . externalFilename ) {
728727 const snapshotFilename = dock . path ;
@@ -737,7 +736,6 @@ function payloadFileSync(pointer) {
737736 return dock . externalFilename ;
738737 } ;
739738
740- // eslint-disable-next-line prefer-arrow-callback
741739 function uncompressExternallyPath ( path_ ) {
742740 const entity = findVirtualFileSystemEntry ( path_ ) ;
743741 const dock = { path : path_ , entity, position : 0 } ;
@@ -750,7 +748,6 @@ function payloadFileSync(pointer) {
750748 return fd ;
751749 }
752750
753- // eslint-disable-next-line prefer-arrow-callback
754751 function openFromSnapshot ( path_ , uncompress , cb ) {
755752 const cb2 = cb || rethrow ;
756753 const entity = findVirtualFileSystemEntry ( path_ ) ;
@@ -1752,7 +1749,6 @@ function payloadFileSync(pointer) {
17521749 return process . binding ( 'fs' ) . internalModuleStat ( makeLong ( fNative ) ) ;
17531750 }
17541751
1755- // eslint-disable-next-line prefer-arrow-callback
17561752 fs . internalModuleStat = function internalModuleStat ( long ) {
17571753 // from node comments:
17581754 // Used to speed up module loading. Returns 0 if the path refers to
0 commit comments