Helper slots for Magic to allow you to easily modify and manipulate dates from your own Hyperlambda. To use package go to https://polterguy.github.io
$ dotnet add package magic.lambda.datesDate manipulation slots for Magic. More specifically, this project contains the following slots.
DateTime.Now.DateTime object.DateTime.MinValue.Notice - Internally in Magic, everything is UTC Universal timezone, implying if you want to render it in user's timezone, you'll have to convert it explicitly in your client/frontend. All dates and times internally in Magic, also those stored into any database, are treated as UTC timezone. All dates transmitted to the backend, is also assumed to be UTC. This is to make things simple in regards to interacting with database systems, that may or may not add support for timezone offsets. Below is an example of taking the current date and time, and adding two days and one second to it, for then to format the result as a string.
math.add
date.now
time
days:2
second:1
date.format:x:-
format:"yyyy-MM-dd HH:mm:ss"
The source code for this repository can be found at github.com/polterguy/magic.lambda.dates, and you can provide feedback, provide bug reports, etc at the same place.