reap
reap copied to clipboard
A Clojure library for decoding and encoding strings used by web protocols.
To my shame and regret, I did not find a way to download the library from any accessible public repository. Does such a possibility exist?
For me the link was going to https://en.wikipedia.org/wiki/Allen%E2%80%99s_interval_algebra instead of https://en.wikipedia.org/wiki/Allen%27s_interval_algebra NOTE: ’ instead of '
`(reap.decoders/http-date "Mon Jan 1 00:00:00 90")` returns `nil` but should parse. In addition: > Recipients of a timestamp value in rfc850-date format, which uses a > two-digit year, MUST interpret...
`(reap.decoders/http-date "Thu, 31 Dec 1998 23:59:60 GMT")` should work, as specified in [RFC7231](https://tools.ietf.org/html/rfc7231#section-7.1.1.1) ``` time-of-day = hour ":" minute ":" second ; 00:00:00 - 23:59:60 (leap second) ``` Java time...