diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-03-19 13:57:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 13:57:37 +0100 |
commit | e55dee7fd894f705a0268a4734b00197021f0617 (patch) | |
tree | f6232128259430ba943da2c1d9ade6ad17697adc /runtime/js/40_process.js | |
parent | ad8e2383487e8ef4f15e7b86df80f6dc98fdcc79 (diff) |
refactor: cleanup assert() & AssertionError definitions (#13859)
Diffstat (limited to 'runtime/js/40_process.js')
-rw-r--r-- | runtime/js/40_process.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js index 14c31fa8d..c33ce1c04 100644 --- a/runtime/js/40_process.js +++ b/runtime/js/40_process.js @@ -5,7 +5,8 @@ const core = window.Deno.core; const { FsFile } = window.__bootstrap.files; const { readAll } = window.__bootstrap.io; - const { assert, pathFromURL } = window.__bootstrap.util; + const { pathFromURL } = window.__bootstrap.util; + const { assert } = window.__bootstrap.infra; const { ArrayPrototypeMap, TypeError, |