-
Notifications
You must be signed in to change notification settings - Fork 510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
diffJson with dates, returns empty curly braces #102
Comments
Maybe I'm missing something... |
Date's can not be expressed in json, unless converted to a string or other primitive format. This is operating as expected, unfortunately. |
Sorry, but I'm emphatically disagree, see next test: var obj = {str: 'asd', date: new Date()};
JSON.stringify(obj);
// result:
// "{\"str\":\"asd\",\"date\":\"2016-02-24T10:41:40.220Z\"}" |
My comment that |
@kpdecker thank you. It should call |
Released in 2.2.2 |
Example:
Result:
Expected result:
The text was updated successfully, but these errors were encountered: