summaryrefslogtreecommitdiff
path: root/lib/internal/url.js
diff options
context:
space:
mode:
authortoshi1127 <toshi.matsumoto.2n@stu.hosei.ac.jp>2019-03-20 21:34:03 +0900
committerZYSzys <zyszys98@gmail.com>2019-03-24 22:09:47 +0800
commit5b59b5f525ac4c17e34f88a2eb672687004e606c (patch)
tree96d93977917925064809a0029a7dce633eded43a /lib/internal/url.js
parentb8d4bafa03c5253446ec699ecf08f452d3186b2d (diff)
downloadandroid-node-v8-5b59b5f525ac4c17e34f88a2eb672687004e606c.tar.gz
android-node-v8-5b59b5f525ac4c17e34f88a2eb672687004e606c.tar.bz2
android-node-v8-5b59b5f525ac4c17e34f88a2eb672687004e606c.zip
url: remove usage of require('util')
PR-URL: https://github.com/nodejs/node/pull/26808 Refs: https://github.com/nodejs/node/issues/26546 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Diffstat (limited to 'lib/internal/url.js')
-rw-r--r--lib/internal/url.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/internal/url.js b/lib/internal/url.js
index 17af756668..95f0fc21e5 100644
--- a/lib/internal/url.js
+++ b/lib/internal/url.js
@@ -1,6 +1,6 @@
'use strict';
-const util = require('util');
+const { inspect } = require('internal/util/inspect');
const {
encodeStr,
hexTable,
@@ -184,7 +184,7 @@ class URLSearchParams {
this[context] = null;
}
- [util.inspect.custom](recurseTimes, ctx) {
+ [inspect.custom](recurseTimes, ctx) {
if (!this || !this[searchParams] || this[searchParams][searchParams]) {
throw new ERR_INVALID_THIS('URLSearchParams');
}
@@ -197,7 +197,7 @@ class URLSearchParams {
if (recurseTimes !== null) {
innerOpts.depth = recurseTimes - 1;
}
- var innerInspect = (v) => util.inspect(v, innerOpts);
+ var innerInspect = (v) => inspect(v, innerOpts);
var list = this[searchParams];
var output = [];
@@ -334,7 +334,7 @@ class URL {
scheme === 'file:');
}
- [util.inspect.custom](depth, opts) {
+ [inspect.custom](depth, opts) {
if (this == null ||
Object.getPrototypeOf(this[context]) !== URLContext.prototype) {
throw new ERR_INVALID_THIS('URL');
@@ -368,7 +368,7 @@ class URL {
obj[context] = this[context];
}
- return util.inspect(obj, opts);
+ return inspect(obj, opts);
}
}
@@ -1194,7 +1194,7 @@ defineIDLClass(URLSearchParamsIteratorPrototype, 'URLSearchParams Iterator', {
done: false
};
},
- [util.inspect.custom](recurseTimes, ctx) {
+ [inspect.custom](recurseTimes, ctx) {
if (this == null || this[context] == null || this[context].target == null)
throw new ERR_INVALID_THIS('URLSearchParamsIterator');
@@ -1221,8 +1221,8 @@ defineIDLClass(URLSearchParamsIteratorPrototype, 'URLSearchParams Iterator', {
}
return prev;
}, []);
- const breakLn = util.inspect(output, innerOpts).includes('\n');
- const outputStrs = output.map((p) => util.inspect(p, innerOpts));
+ const breakLn = inspect(output, innerOpts).includes('\n');
+ const outputStrs = output.map((p) => inspect(p, innerOpts));
let outputStr;
if (breakLn) {
outputStr = `\n ${outputStrs.join(',\n ')}`;