diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-07-23 11:12:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 11:12:25 -0400 |
commit | 218be6a269644a95bdef7fc678b5618d5d7ce9a7 (patch) | |
tree | 4fb0a7bccd2a87ef16df83a9fd61fc06885fdff8 /cli/rt/08_text_encoding.js | |
parent | ca4dcb36dd5be0b14a2fafa059ea02ee7e0a0262 (diff) |
Don't use window.__base64. Combine deno_ns scripts. (#6858)
Diffstat (limited to 'cli/rt/08_text_encoding.js')
-rw-r--r-- | cli/rt/08_text_encoding.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/rt/08_text_encoding.js b/cli/rt/08_text_encoding.js index f12429641..a7a9a49e4 100644 --- a/cli/rt/08_text_encoding.js +++ b/cli/rt/08_text_encoding.js @@ -26,7 +26,7 @@ ((window) => { const core = Deno.core; - const base64 = window.__base64; + const base64 = window.__bootstrap.base64; const CONTINUE = null; const END_OF_STREAM = -1; |