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 @@ -145,7 +145,7 @@ const {
145
145
validateObject,
146
146
validateString,
147
147
} = require ( 'internal/validators' ) ;
148
- const { readFileSyncUtf8 } = require ( 'internal/fs/read-file /utf8' ) ;
148
+ const { readFileSyncUtf8 } = require ( 'internal/fs/read/utf8' ) ;
149
149
150
150
const watchers = require ( 'internal/fs/watchers' ) ;
151
151
@@ -391,7 +391,7 @@ function checkAborted(signal, callback) {
391
391
function readFile ( path , options , callback ) {
392
392
callback = maybeCallback ( callback || options ) ;
393
393
options = getOptions ( options , { flag : 'r' } ) ;
394
- const ReadFileContext = require ( 'internal/fs/read-file /context' ) ;
394
+ const ReadFileContext = require ( 'internal/fs/read/context' ) ;
395
395
const context = new ReadFileContext ( callback , options . encoding ) ;
396
396
context . isUserFd = isFd ( path ) ; // File descriptor ownership
397
397
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments