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 {
139
139
validateInteger,
140
140
validateObject,
141
141
} = require ( 'internal/validators' ) ;
142
- const { readFileSyncUtf8 } = require ( 'internal/fs/read-file /utf8' ) ;
142
+ const { readFileSyncUtf8 } = require ( 'internal/fs/read/utf8' ) ;
143
143
144
144
let truncateWarn = true ;
145
145
let fs ;
@@ -384,7 +384,7 @@ function checkAborted(signal, callback) {
384
384
function readFile ( path , options , callback ) {
385
385
callback = maybeCallback ( callback || options ) ;
386
386
options = getOptions ( options , { flag : 'r' } ) ;
387
- const ReadFileContext = require ( 'internal/fs/read-file /context' ) ;
387
+ const ReadFileContext = require ( 'internal/fs/read/context' ) ;
388
388
const context = new ReadFileContext ( callback , options . encoding ) ;
389
389
context . isUserFd = isFd ( path ) ; // File descriptor ownership
390
390
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments