diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-25 23:51:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 23:51:29 +0100 |
commit | 0b0fb94ce2489da642cffd82e0498446d4a1fe1f (patch) | |
tree | af3fd4fd60e0e9fdf5301ac2881b8e5c43f25cbb /ext/node/polyfills/_fs/_fs_ftruncate.ts | |
parent | 7038074c8583465872b16083f54f2211312f0943 (diff) |
fix(fs): instanceof check for Deno.FsFile (#22121)
Regression caused by https://github.com/denoland/deno/pull/22072.
I added a relevant test so we don't regress again.
Fixes https://github.com/denoland/deno/issues/22115
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_ftruncate.ts')
-rw-r--r-- | ext/node/polyfills/_fs/_fs_ftruncate.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/node/polyfills/_fs/_fs_ftruncate.ts b/ext/node/polyfills/_fs/_fs_ftruncate.ts index 71186e868..92af46f52 100644 --- a/ext/node/polyfills/_fs/_fs_ftruncate.ts +++ b/ext/node/polyfills/_fs/_fs_ftruncate.ts @@ -20,9 +20,12 @@ export function ftruncate( if (!callback) throw new Error("No callback function supplied"); - new FsFile(fd).truncate(len).then(() => callback(null), callback); + new FsFile(fd, Symbol.for("Deno.internal.FsFile")).truncate(len).then( + () => callback(null), + callback, + ); } export function ftruncateSync(fd: number, len?: number) { - new FsFile(fd).truncateSync(len); + new FsFile(fd, Symbol.for("Deno.internal.FsFile")).truncateSync(len); } |