Closed jubil closed 6 years ago
In the file 'README.md ' I can read:
db.openCursor('people', (evt) => { var cursor = evt.target.result; if(cursor) { console.log(cursor.value); cursor.continue(); } else { console.log('Entries all displayed.'); } }, IDBKeyRange.bound("A", "F"));
But, I have an error on the line var cursor = evt.target.result;
var cursor = evt.target.result;
@jubil, Thanks for your point. You can cast evt.target to type any to solve the problem. I'll update the readme file to express that.
In the file 'README.md ' I can read:
But, I have an error on the line
var cursor = evt.target.result;