DBFFile
DBFFile copied to clipboard
feat: add async generator to dbf file class
Addresses #71
I converted the existing readRecordsFromDBF
function into an async generator to yield records one at a time and replaced readRecordsFromDBF
with a wrapper around this new function.
All existing tests pass and I added a new test to ensure the new Symbol.asyncIterator
API is present and functional.