Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
629 B
Plaintext
Raw Normal View History

{
"name": "make_date",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Date and Time"],
"description": "Creates a date value from year, month and day numbers.",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "year",
"description": "Year number. Years 1 to 99 are interpreted as is. Year 0 is invalid."
}, {
"arg": "month",
"description": "Month number, where 1=January"
}, {
"arg": "day",
"description": "Day number, beginning with 1 for the first day in the month"
}],
"examples": [{
"expression": "make_date(2020,5,4)",
"returns": "date value 2020-05-04"
}],
"tags": ["year", "date", "month", "numbers", "day"]
}