Skip to content

Commit b6d12fd

Browse files
committed
fix regression
1 parent 3f56313 commit b6d12fd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/node.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,9 @@ const {formatters} = module.exports;
248248
formatters.o = function (v) {
249249
this.inspectOpts.colors = this.useColors;
250250
return util.inspect(v, this.inspectOpts)
251-
.replace(/\s*\n\s*/g, ' ');
251+
.split('\n')
252+
.map(str => str.trim())
253+
.join(' ');
252254
};
253255

254256
/**

0 commit comments

Comments
 (0)