diff options
author | Andreu Botella <abb@randomunok.com> | 2021-08-31 19:33:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 19:33:03 +0200 |
commit | c49eee551fdf78ab0230ec30d4537c98dd5d0c80 (patch) | |
tree | d592858019caf072920fa5dab1337974fe19987f /runtime/js/06_util.js | |
parent | b518f5e1ba4c3281d4aee4c637f410db382ce751 (diff) |
feat(workers): Make the `Deno` namespace configurable and unfrozen (#11888)
This is the worker counterpart of PR #11062.
Diffstat (limited to 'runtime/js/06_util.js')
-rw-r--r-- | runtime/js/06_util.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js index b6a3c3438..97c0adea4 100644 --- a/runtime/js/06_util.js +++ b/runtime/js/06_util.js @@ -3,7 +3,6 @@ ((window) => { const { - ObjectDefineProperty, StringPrototypeReplace, TypeError, Promise, @@ -55,18 +54,6 @@ return promise; } - function immutableDefine( - o, - p, - value, - ) { - ObjectDefineProperty(o, p, { - value, - configurable: false, - writable: false, - }); - } - // Keep in sync with `fromFileUrl()` in `std/path/win32.ts`. function pathFromURLWin32(url) { let p = StringPrototypeReplace( @@ -164,7 +151,6 @@ createResolvable, assert, AssertionError, - immutableDefine, pathFromURL, writable, nonEnumerable, |