Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeijia Wang <381152119@qq.com>2018-08-09 09:00:10 +0300
committerWeijia Wang <381152119@qq.com>2018-09-07 04:03:25 +0300
commite917a23d2e8269eec48e95bcebcb9f7c6c5e4e3d (patch)
tree3a9ff363679e7938676b36e7c83b888dd9d72820 /src/node_url.cc
parent83c1ba3180f4f16e28e4eeba49bed08c8a35befd (diff)
url: move process.binding('url') to internalBinding
PR-URL: https://github.com/nodejs/node/pull/22204 Refs: https://github.com/nodejs/node/issues/22160 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com>
Diffstat (limited to 'src/node_url.cc')
-rw-r--r--src/node_url.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_url.cc b/src/node_url.cc
index 4d57027dd29..f1008c917de 100644
--- a/src/node_url.cc
+++ b/src/node_url.cc
@@ -2420,4 +2420,4 @@ static void Initialize(Local<Object> target,
} // namespace url
} // namespace node
-NODE_BUILTIN_MODULE_CONTEXT_AWARE(url, node::url::Initialize)
+NODE_MODULE_CONTEXT_AWARE_INTERNAL(url, node::url::Initialize)