Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions lib/internal/util/inspect.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -1412,9 +1412,7 @@ function formatNamespaceObject(keys, ctx, value, recurseTimes){
output[i]=formatProperty(ctx,value,recurseTimes,keys[i],
kObjectType);
}catch(err){
if(!(isNativeError(err)&&err.name==='ReferenceError')){
throwerr;
}
assert(isNativeError(err)&&err.name==='ReferenceError');
// Use the existing functionality. This makes sure the indentation and
// line breaks are always correct. Otherwise it is very difficult to keep
// this aligned, even though this is a hacky way of dealing with this.
Expand Down