summaryrefslogtreecommitdiff
path: root/lib/url.js
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-01-30 22:21:07 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2019-02-02 05:40:47 +0800
commit39d922123c02aecc2e289a08e3bdb9515a7b193a (patch)
tree6ee18ed6096ced4e248836a89c27ecf0da91a6a3 /lib/url.js
parent1d996f58af3067617a67c0af8f86f014ed4d139c (diff)
downloadandroid-node-v8-39d922123c02aecc2e289a08e3bdb9515a7b193a.tar.gz
android-node-v8-39d922123c02aecc2e289a08e3bdb9515a7b193a.tar.bz2
android-node-v8-39d922123c02aecc2e289a08e3bdb9515a7b193a.zip
lib: save primordials during bootstrap and use it in builtins
This patches changes the `safe_globals` internal module into a script that gets run during bootstrap and saves JavaScript builtins (primordials) into an object that is available for all other builtin modules to access lexically later. PR-URL: https://github.com/nodejs/node/pull/25816 Refs: https://github.com/nodejs/node/issues/18795 Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to 'lib/url.js')
-rw-r--r--lib/url.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.js b/lib/url.js
index 569733bfc4..0e02dbc131 100644
--- a/lib/url.js
+++ b/lib/url.js
@@ -23,7 +23,7 @@
const { toASCII } = require('internal/idna');
const { hexTable } = require('internal/querystring');
-const { SafeSet } = require('internal/safe_globals');
+const { SafeSet } = primordials;
const {
ERR_INVALID_ARG_TYPE