Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix outdated note in runtime/js/README.md #23673

Merged
merged 2 commits into from
May 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 2 additions & 7 deletions runtime/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@

This directory contains Deno runtime code written in plain JavaScript.

Each file is a plain, old **script**, not ES modules. The reason is that
snapshotting ES modules is much harder, especially if one needs to manipulate
global scope (like in case of Deno).

Each file is prefixed with a number, telling in which order scripts should be
loaded into V8 isolate. This is temporary solution and we're striving not to
require specific order (though it's not 100% obvious if that's feasible).
Each file is an ES module and is prefixed with a number, telling in which order
scripts should be loaded into V8 isolate.

## Deno Web APIs

Expand Down