3

In the old monolithic clojure-contrib there were java-utils and properties namespaces with a few handy functions, like read-properties which parsed a Java properties file into a Clojure map.

Is there an equivalent of these namespaces in the new contrib?

I know that it is easy to write (i.e. copy-paste) the function and I'll probably do it anyway, but if it's already somewhere I'd rather not duplicate code.

Goran Jovic
  • 9,418
  • 3
  • 43
  • 75

1 Answers1

1

The java_utils library never made it, but check out propertea. I think it'll do what you want.

John Szakmeister
  • 44,691
  • 9
  • 89
  • 79