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 700b09e commit fd4f53bCopy full SHA for fd4f53b
src/formatter/sortObject.js
@@ -20,6 +20,9 @@ export default function sortObject(value: any): any {
20
return Object.keys(value)
21
.sort()
22
.reduce((result, key) => {
23
+ if (key === '_owner') {
24
+ return result;
25
+ }
26
// eslint-disable-next-line no-param-reassign
27
result[key] = sortObject(value[key]);
28
return result;
0 commit comments