File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ const {
139139 validateInteger,
140140 validateObject,
141141} = require ( 'internal/validators' ) ;
142- const { readFileSyncUtf8 } = require ( 'internal/fs/read-file /utf8' ) ;
142+ const { readFileSyncUtf8 } = require ( 'internal/fs/read/utf8' ) ;
143143
144144let truncateWarn = true ;
145145let fs ;
@@ -384,7 +384,7 @@ function checkAborted(signal, callback) {
384384function readFile ( path , options , callback ) {
385385 callback = maybeCallback ( callback || options ) ;
386386 options = getOptions ( options , { flag : 'r' } ) ;
387- const ReadFileContext = require ( 'internal/fs/read-file /context' ) ;
387+ const ReadFileContext = require ( 'internal/fs/read/context' ) ;
388388 const context = new ReadFileContext ( callback , options . encoding ) ;
389389 context . isUserFd = isFd ( path ) ; // File descriptor ownership
390390
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments