Skip to content

v0.0.10

Pre-release
Pre-release
Compare
Choose a tag to compare
@borkdude borkdude released this 22 Aug 11:53
· 146 commits to master since this release

New:

  • #10, #39: --keywordize now takes an optional function argument which will be used to transform keys from JSON. Example:
$ echo '{"my key": 1}' | jet --from json --keywordize '#(keyword (str/replace % " " "_"))' --to edn
{:my_key 1}
  • The --interactive command now takes an optional first command from the command line. Thanks @reedho for co-operating on this. See the README for more info.