1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 02:27:46 -05:00
denoland-deno/ext/node/polyfills/internal_binding
cions 322b90fe87
fix: android support (#19437)
<!--
Before submitting a PR, please read https://deno.com/manual/contributing

1. Give the PR a descriptive title.

  Examples of good title:
    - fix(std/http): Fix race condition in server
    - docs(console): Update docstrings
    - feat(doc): Handle nested reexports

  Examples of bad title:
    - fix #7123
    - update docs
    - fix bugs

2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
7. Open as a draft PR if your work is still in progress. The CI won't
run
   all steps, but you can add '[ci]' to a commit message to force it to.
8. If you would like to run the benchmarks on the CI, add the 'ci-bench'
label.
-->

---------

Signed-off-by: Matt Mastracci <matthew@mastracci.com>
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
2024-01-12 13:22:09 +01:00
..
_libuv_winerror.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
_listen.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
_node.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
_timingSafeEqual.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
_utils.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
ares.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
async_wrap.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
buffer.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
cares_wrap.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
connection_wrap.ts chore: update deno_lint for CI (#21802) 2024-01-12 13:22:03 +01:00
constants.ts fix: android support (#19437) 2024-01-12 13:22:09 +01:00
crypto.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
handle_wrap.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
mod.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
node_file.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
node_options.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
pipe_wrap.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
README.md feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
stream_wrap.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
string_decoder.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
symbols.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
tcp_wrap.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
types.ts fix: strict type check for cross realms (#21669) 2024-01-04 20:34:55 +01:00
udp_wrap.ts fix(ext/node): UdpSocket ref and unref (#21777) 2024-01-04 20:34:55 +01:00
util.ts chore: update copyright to 2024 (#21753) 2024-01-04 20:34:51 +01:00
uv.ts fix: android support (#19437) 2024-01-12 13:22:09 +01:00

Internal Bindings

The modules in this directory implement (simulate) C++ bindings implemented in the ./src/ directory of the Node.js repository.

These bindings are created in the Node.js source code by using NODE_MODULE_CONTEXT_AWARE_INTERNAL.

Please refer to https://github.com/nodejs/node/blob/master/src/README.md for further information.