magic.lambda.dates - Manipulating dates from Hyperlambda

This project contains date manipulation slots for Magic. More specifically, this project contains the following slots.

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"

How to use [date.now]

This slot takes no arguments and simply returns the current date and time. Basic usage can be found below.

date.now

How to use [date.from-unix]

This slot takes a Unix date and time stamp, and returns a typed date object as its result. Below is an example.

date.from-unix:1674132584

How to use [date.min]

This slot simply returns the minimum value a date and time object can hold. Usage can be found below.

date.min

How to use [date.format]

This slot formats a date and time object as a string. Patterns are the same as patterns for C#. Below is example usage.

date.format:date:"2023-01-19T12:49:44.000Z"
   format:dd. MMMM yyyy

How to use [time]

This slots returns a time object, which is useful for doing math operations with a date and time object, allowing you to for instance subtract 5 days from the current date and time. Below is an example.

time
   days:5

This slots can be given the following arguments;

Project website formagic.lambda.dates

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.

The projects is copyright of Aista, Ltd 2021 - 2023