We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034ec1c commit ab8d18fCopy full SHA for ab8d18f
src/formatters/plain.js
@@ -1,5 +1,7 @@
1
+import _ from 'lodash';
2
+
3
const stringify = (value) => {
- if (typeof value === 'object' && value !== null) {
4
+ if (_.isObject(value)) {
5
return '[complex value]';
6
}
7
0 commit comments