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 e192714 commit 1936150Copy full SHA for 1936150
bin/index.js
@@ -48,5 +48,6 @@ function parseArgs() {
48
}
49
50
const { expression, object } = parseArgs();
51
+const result = jsonata(expression).evaluate(object);
52
// eslint-disable-next-line no-console
-console.log(jsonata(expression).evaluate(object));
53
+console.log(JSON.stringify(result, null, 2));
0 commit comments