You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
A new branch adds two tests for the date method. First, if the value is falsy and there is no default. The docs say it should be today's date, but it returns the Unix epoch date.
Then if the default and value are null. It should return null, which it does.
To Reproduce
Use the tests in the fix/date-null branch.
Expected behavior
The null value without a default should return today's date.
A new branch adds two tests for the date method. First, if the value is falsy and there is no default. The docs say it should be today's date, but it returns the Unix epoch date.
Then if the default and value are
null. It should returnnull, which it does.To Reproduce
Use the tests in the
fix/date-nullbranch.Expected behavior
The null value without a default should return today's date.
Describe the bug
It returns the Unix epoch date.