We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example scenario:
var updeep = require('updeep') var entry = { title: 'Does not work with Date objects using non-function form.' }
Using function form works:
> updeep({ created: () => new Date() }, entry) { title: 'Does not work with Date objects using non-function form.', created: Tue Sep 15 2015 12:38:37 GMT+0700 (ICT) }
Using non-function form does not work:
> updeep({ created: new Date() }, entry) { title: 'Does not work with Date objects using non-function form.', created: {} }
The text was updated successfully, but these errors were encountered:
d2d0703
Fixed in 0.10.1, thanks for the report!
Sorry, something went wrong.
That was quick, thanks!
No branches or pull requests
Example scenario:
Using function form works:
Using non-function form does not work:
The text was updated successfully, but these errors were encountered: