summaryrefslogtreecommitdiff
path: root/ext/websocket/00_ops.js
AgeCommit message (Collapse)Author
2024-01-26refactor: migrate extensions to virtual ops module (#22135)Bartek IwaƄczuk
First pass of migrating away from `Deno.core.ensureFastOps()`. A few "tricky" ones have been left for a follow up.
2024-01-01chore: update copyright to 2024 (#21753)David Sherret
2023-12-24chore: ensure that each op provided to ensureFastOps is only used once (#21689)Matt Mastracci
When we migrate to op-import-per-extension, we will want to ensure that ops have one and only one place where they are imported. This tackles the ops that are imported via `ensureFastOps`, but does not yet tackle direct `ops` imports. Landing ahead of https://github.com/denoland/deno_core/pull/393