mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
0863374f8c
Also rename _tojq value_sep to object_sep and fix formats_diagram.jq to use tomd5
18 lines
486 B
Plaintext
18 lines
486 B
Plaintext
def _bencode_torepr:
|
|
if .type == "string" then .value | tovalue
|
|
elif .type == "integer" then .value | tovalue
|
|
elif .type == "list" then .values | map(_bencode_torepr)
|
|
elif .type == "dictionary" then
|
|
( .pairs
|
|
| map({key: (.key | _bencode_torepr), value: (.value | _bencode_torepr)})
|
|
| from_entries
|
|
)
|
|
else error("unknown type \(.type)")
|
|
end;
|
|
|
|
def _bencode__help:
|
|
{ links: [
|
|
{url: "https://wiki.theory.org/BitTorrentSpecification#Bencoding"}
|
|
]
|
|
};
|