1
1
import { Readable } from 'stream' ;
2
2
import createDebug from 'debug' ;
3
- import { Stats , createReadStream } from 'fs' ;
4
- import { fstat , open } from 'fs-extra' ;
3
+ import { Stats , createReadStream , promises as fsPromises } from 'fs' ;
5
4
import { GetUriProtocol } from './' ;
6
5
import NotFoundError from './notfound' ;
7
6
import NotModifiedError from './notmodified' ;
@@ -42,11 +41,12 @@ export const file: GetUriProtocol<FileOptions> = async (
42
41
43
42
// `open()` first to get a file descriptor and ensure that the file
44
43
// exists.
45
- const fd = await open ( filepath , flags , mode ) ;
44
+ const fdHandle = await fsPromises . open ( filepath , flags , mode ) ;
45
+ // extract the numeric file descriptor
46
+ const fd = fdHandle . fd ;
46
47
47
- // Now `fstat()` to check the `mtime` and store the stat object for
48
- // the cache.
49
- const stat = await fstat ( fd ) ;
48
+ // store the stat object for the cache.
49
+ const stat = await fdHandle . stat ( ) ;
50
50
51
51
// if a `cache` was provided, check if the file has not been modified
52
52
if ( cache && cache . stat && stat && isNotModified ( cache . stat , stat ) ) {
@@ -55,8 +55,7 @@ export const file: GetUriProtocol<FileOptions> = async (
55
55
56
56
// `fs.ReadStream` takes care of calling `fs.close()` on the
57
57
// fd after it's done reading
58
- // @ts -expect-error `@types/node` doesn't allow `null` as file path :/
59
- const rs = createReadStream ( null , {
58
+ const rs = createReadStream ( filepath , {
60
59
autoClose : true ,
61
60
...opts ,
62
61
fd,
0 commit comments