summaryrefslogtreecommitdiff
path: root/runtime/js/06_util.js
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-06-22 07:17:35 +1000
committerGitHub <noreply@github.com>2021-06-22 07:17:35 +1000
commitcda15f2a98b10330422d1c8352d163d703ee6a49 (patch)
treea221c21283d1d19675cf77a66929f5c2b2936861 /runtime/js/06_util.js
parent2d2b5625e04a466362c9a4afb05e2f559c4fb4b0 (diff)
feat: Deno namespace configurable and unfrozen (#11062)
Closes #11033
Diffstat (limited to 'runtime/js/06_util.js')
-rw-r--r--runtime/js/06_util.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js
index 9df9ac88a..3809cc9d0 100644
--- a/runtime/js/06_util.js
+++ b/runtime/js/06_util.js
@@ -117,6 +117,7 @@
return {
value,
writable: true,
+ enumerable: false,
configurable: true,
};
}
@@ -125,6 +126,8 @@
return {
value,
enumerable: true,
+ writable: false,
+ configurable: true,
};
}
@@ -132,6 +135,7 @@
return {
get: getter,
enumerable: true,
+ configurable: true,
};
}