# Eymenium Date module
# Calendar helpers layered on top of time.eym.

add time

exp now():
    back local()

exp today():
    back year() + "-" + month() + "-" + day()

exp clock():
    back hour() + ":" + minute() + ":" + second()

exp is_weekend():
    back weekday() == 0 either weekday() == 6
