rink-rs/rink-js
V c36a666174
Make "now" respect system timezone (#101)
Most users probably want to manipulate time relative to the present in
their local timezone. This brings rink's functionality closer to similar
tools.

In date(1):

	> date -d 'now + 1 hour'
	Fri 23 Jul 09:54:02 CEST 2021

Before:

	> now
	2021-07-23 06:54:05.699222874 +00:00 (now)
	> now + 1 hour
	2021-07-23 07:54:10.940110380 +00:00 (in an hour)

After:

	> now
	2021-07-23 08:54:13.219044877 +02:00 (now)
	> now + 1 hour
	2021-07-23 09:54:15.555096329 +02:00 (in an hour)
2021-07-23 00:14:19 -07:00
..
src Make "now" respect system timezone (#101) 2021-07-23 00:14:19 -07:00
tests Rink Web 2 (#62) 2020-08-06 16:25:12 -07:00
Cargo.toml Release v0.6.0 2021-04-05 17:31:39 -07:00
LICENSE Rink Web 2 (#62) 2020-08-06 16:25:12 -07:00
README.md Rink Web 2 (#62) 2020-08-06 16:25:12 -07:00

Rink JS

Provides a Wasm build of Rink with a JS API.