Re: Cross platform date/time libarary

2016-04-06 Thread Sean Corfield
Michael Klishin and I discussed this and didn’t think it was going to be worth it due to the high level of Java interop in the Clojure version. If someone believes they can do it without producing a maintenance nightmare, Pull Requests are always welcome! Sean Corfield -- (904) 302-SEAN An

Re: Cross platform date/time libarary

2016-04-06 Thread Michael Blume
Within your library you could probably use cljc to import one or the other, though. On Mon, Apr 4, 2016 at 9:04 AM Sean Corfield wrote: > On 4/3/16, 11:41 PM, "JvJ" kfjwhee...@gmail.com> wrote: > > OK. As long as a single import in a cljc will suffice. > > Nope. The Clojure time libraries all

Re: Cross platform date/time libarary

2016-04-04 Thread Sean Corfield
On 4/3/16, 11:41 PM, "JvJ" wrote: > OK.  As long as a single import in a cljc will suffice. Nope. The Clojure time libraries all lean very heavily on Java interop so a single source solution really is not feasible. Sean Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ "If

Re: Cross platform date/time libarary

2016-04-03 Thread JvJ
OK. As long as a single import in a cljc will suffice. On Sunday, 3 April 2016 21:20:54 UTC-7, Sean Corfield wrote: > > On 4/3/16, 7:36 PM, "JvJ" on > behalf of kfjwh...@gmail.com > wrote: > > Is there a date/time library that is written for both clojure and > clojurescript? > > Probably the

Re: Cross platform date/time libarary

2016-04-03 Thread Sean Corfield
On 4/3/16, 7:36 PM, "JvJ" wrote: > Is there a date/time library that is written for both clojure and > clojurescript? Probably the closest thing is this pair of libraries: https://github.com/clj-time/clj-time https://github.com/andrewmcveigh/cljs-time Same API, different implementations. Sea