summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/util.js3
-rw-r--r--src/node_util.cc1
-rw-r--r--test/parallel/test-util-inspect.js3
3 files changed, 7 insertions, 0 deletions
diff --git a/lib/util.js b/lib/util.js
index 8567f8dbaa..a0e8bb3c1d 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -466,6 +466,9 @@ function formatValue(ctx, value, recurseTimes) {
return `${constructor.name}` +
` { byteLength: ${formatNumber(ctx, value.byteLength)} }`;
}
+ if (binding.isExternal(value)) {
+ return ctx.stylize('[External]', 'special');
+ }
}
var base = '';
diff --git a/src/node_util.cc b/src/node_util.cc
index 8279a787d7..813995de79 100644
--- a/src/node_util.cc
+++ b/src/node_util.cc
@@ -22,6 +22,7 @@ using v8::Value;
V(isArrayBuffer, IsArrayBuffer) \
V(isDataView, IsDataView) \
V(isDate, IsDate) \
+ V(isExternal, IsExternal) \
V(isMap, IsMap) \
V(isMapIterator, IsMapIterator) \
V(isPromise, IsPromise) \
diff --git a/test/parallel/test-util-inspect.js b/test/parallel/test-util-inspect.js
index 32e36135ef..ab4964f9e7 100644
--- a/test/parallel/test-util-inspect.js
+++ b/test/parallel/test-util-inspect.js
@@ -82,6 +82,9 @@ assert.strictEqual(util.inspect(Object.assign(new String('hello'),
{ [Symbol('foo')]: 123 }), { showHidden: true }),
'{ [String: \'hello\'] [length]: 5, [Symbol(foo)]: 123 }');
+assert.strictEqual(util.inspect(process.stdin._handle._externalStream),
+ '[External]');
+
{
const regexp = /regexp/;
regexp.aprop = 42;