1
1
mirror of https://github.com/wader/fq.git synced 2024-11-28 03:02:55 +03:00
fq/pkg/interp/testdata/debug.fqtest
Mattias Wadman 45afbe6201 wip
2021-09-12 13:08:53 +02:00

16 lines
189 B
Plaintext

$ fq -i
null> {a: 123, b: []} | debug
{
"a": 123,
"b": []
}
null> {a: 123, b: []} | debug({a})
{
"a": 123,
"b": []
}
null> ^D
stderr:
["DEBUG",{"a":123,"b":[]}]
["DEBUG",{"a":123}]