diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-11 07:26:35 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-10 17:26:35 -0400 |
commit | c6f1107e9c8835389479f4f2d80d3539d23df41e (patch) | |
tree | 4fdf2e9c02d23364cae0aab9021d1655274d1d5c /cli/js/40_jupyter.js | |
parent | 7c5745a204637f12e53e62821c6e7e91fee21fbe (diff) |
chore: update references to `deno_std` to use JSR (#23239)
There are more uses of `deno.land/std` in the codebase, but for URL
parsing purposes rather than network calls or documentation.
Diffstat (limited to 'cli/js/40_jupyter.js')
-rw-r--r-- | cli/js/40_jupyter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/40_jupyter.js b/cli/js/40_jupyter.js index 63af393a5..9fab1c414 100644 --- a/cli/js/40_jupyter.js +++ b/cli/js/40_jupyter.js @@ -40,7 +40,7 @@ import { core, internals } from "ext:core/mod.js"; const $display = Symbol.for("Jupyter.display"); -/** Escape copied from https://deno.land/std@0.192.0/html/entities.ts */ +/** Escape copied from https://jsr.io/@std/html/0.221.0/entities.ts */ const rawToEntityEntries = [ ["&", "&"], ["<", "<"], |