Open vitaly-t opened 7 years ago
Not sure where/how to PR documentation updates, or whether it is possible at all.
This code below in the documentation:
cursor.read(100, function (err, rows) => { cursor.close(() => { client.release() }) })
is invalid JavaScript for the callback function. You cannot combine function style with => arrow style.
function
=>
Not sure where/how to PR documentation updates, or whether it is possible at all.
This code below in the documentation:
is invalid JavaScript for the callback function. You cannot combine
function
style with=>
arrow style.