Currently we handle dates as Unix time, which is seconds since 1970.
1767285597 might be a perfectly accurate storage format, but we'll want something more friendly for users to interact with. For example, formatting that as 2026-01-02.
To do that we'll want to convert the Unix date into an object with fields for year, month and day.
Each language has it's own functionality for working with dates, so we'll just need to wrap those to make them accessible from NLL.
This library is now available here
Previous: Create nll-Kanboard library