Closed noahbass closed 7 years ago
Thanks, indeed, error first callbacks have been a standard since the beginning in Node. However, this is a major API change, and would also require a major version change. I will keep this MR for a while, and merge it when we can say we're ready for version 1.0
Can you please create a CHANGELOG file so that users will know what changed from 0.x and 1.x ?
Added a changelog! I tried to stick to the guidelines at keepachangelog.com, but it's a very bare changelog at the moment.
Thanks !
Any news?
Merged into a new branch called v1
hcthgu gf6i
It would be great if the callback for the reader conformed to the javascript error-first convention.
So
qr.callback = function(result, error) { /* ... */ }
would becomeqr.callback = function(error, result) { /* ... */ }