diff options
Diffstat (limited to 'runtime/js/06_util.js')
-rw-r--r-- | runtime/js/06_util.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js index 88c2edc74..b6a3c3438 100644 --- a/runtime/js/06_util.js +++ b/runtime/js/06_util.js @@ -2,8 +2,14 @@ "use strict"; ((window) => { - const { ObjectDefineProperty, StringPrototypeReplace, TypeError, Promise } = - window.__bootstrap.primordials; + const { + ObjectDefineProperty, + StringPrototypeReplace, + TypeError, + Promise, + decodeURIComponent, + Error, + } = window.__bootstrap.primordials; const { build } = window.__bootstrap.build; const { URL } = window.__bootstrap.url; let logDebug = false; |