tempo
tempo copied to clipboard
NIF-based date and time parsing and formatting for Erlang
strptime and strftime supports '%z' field descriptor, but: > tempo:strptime(, ). > {ok, 0.0} > > tempo:strptime(, ). > {ok,40953.0} > tempo:strptime(, ). > {ok,40953.0} Is it possible to expose...
It looks like `strptime` and `strftime` behaviour for dates before 1900 varies across platforms, so I think we should throw an error on such inputs. ``` erlang (tempo_dev@yooki)13> tempo:parse(, {unix,...
I think we should choose between `/2` and `/3` functions and remove `parse_*` and `format_*` from the export list -- there should be only **one** way of doing things.