File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11rules :
2+ dot-notation : error
3+
24 # Custom rules in tools/eslint-rules
35 require-buffer : error
46 buffer-constructor : error
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class Session extends EventEmitter {
6868 const id = this [ nextIdSymbol ] ++ ;
6969 const message = { id, method } ;
7070 if ( params ) {
71- message [ ' params' ] = params ;
71+ message . params = params ;
7272 }
7373 if ( callback ) {
7474 this [ messageCallbacksSymbol ] . set ( id , callback ) ;
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ const { signals } = process.binding('constants').os;
66
77const { createPromise, promiseResolve, promiseReject } = binding ;
88
9- const kArrowMessagePrivateSymbolIndex = binding [ ' arrow_message_private_symbol' ] ;
10- const kDecoratedPrivateSymbolIndex = binding [ ' decorated_private_symbol' ] ;
9+ const kArrowMessagePrivateSymbolIndex = binding . arrow_message_private_symbol ;
10+ const kDecoratedPrivateSymbolIndex = binding . decorated_private_symbol ;
1111const noCrypto = ! process . versions . openssl ;
1212
1313const experimentalWarnings = new Set ( ) ;
Original file line number Diff line number Diff line change @@ -729,7 +729,7 @@ Module._initPaths = function() {
729729 paths . unshift ( path . resolve ( homeDir , '.node_modules' ) ) ;
730730 }
731731
732- var nodePath = process . env [ ' NODE_PATH' ] ;
732+ var nodePath = process . env . NODE_PATH ;
733733 if ( nodePath ) {
734734 paths = nodePath . split ( path . delimiter ) . filter ( function ( path ) {
735735 return ! ! path ;
You can’t perform that action at this time.
0 commit comments