1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00
denoland-deno/ext/node
Nathan Whitaker ff4226a3cd
fix(node/fs): Use correct offset and length in node:fs.read and write (#25049)
My fix in #25030 was buggy, I forgot to pass the `byteOffset` and
`byteLength`. Whoops.

I also discovered that fs.read was not respecting the `offset` argument,
and we were constructing a new `Buffer` for the callback instead of just
passing the original one (which is what node does, and the @types/node
definitions also indicate the callback should get the same type).
Fixes #25028.
2024-08-16 09:48:57 -07:00
..
benchmarks chore: update the copyright of c, mjs, and jsx (#25005) 2024-08-12 12:41:32 -04:00
ops fix(node): Create additional pipes for child processes (#25016) 2024-08-15 09:38:46 -07:00
polyfills fix(node/fs): Use correct offset and length in node:fs.read and write (#25049) 2024-08-16 09:48:57 -07:00
build.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
Cargo.toml fix(ext/node): rewrite X509Certificate resource and add publicKey() (#24988) 2024-08-11 18:58:54 +05:30
clippy.toml refactor(ext/fs): deno_fs::FileSystem - conditional Send + Sync (#18993) 2023-05-08 11:02:02 -04:00
global.rs feat: upgrade deno_core (#24886) 2024-08-05 08:28:12 -07:00
lib.rs fix: node:inspector not being registered (#25007) 2024-08-14 12:33:42 +00:00
polyfill.rs fix: node:inspector not being registered (#25007) 2024-08-14 12:33:42 +00:00
README.md chore(ext/node): correct publishing for ext/node (#15461) 2022-08-11 17:25:41 -04:00

deno_node

require and other node related functionality for Deno.