diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-04-01 20:42:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-01 20:42:49 -0700 |
commit | 7ad76fd453972e9262985c61840c77b8b8a6dbb7 (patch) | |
tree | a97eb0a22d7931ff9ac161f9be97e1faf1358547 /ext/node/lib.rs | |
parent | ca5e5c7e9c8bb68beb751c25f2f08f18a59cd76e (diff) |
fix(ext/node): Add fs.readv, fs.readvSync (#23166)
Part of #18218.
Implements `fs.readv` and `fs.readvSync` and enables the corresponding
`node_compat` tests.
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index cf63a5785..85abe49e4 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -371,6 +371,7 @@ deno_core::extension!(deno_node, "_fs/_fs_readdir.ts", "_fs/_fs_readFile.ts", "_fs/_fs_readlink.ts", + "_fs/_fs_readv.ts", "_fs/_fs_realpath.ts", "_fs/_fs_rename.ts", "_fs/_fs_rm.ts", |