The team here did testing on a actual project implementation resulting in a bugfix on the iterator and removing double namepace entry's written into the files.
js iterator usage:
for await (const [key, value] of this.keyv.iterator()) { console.log(key, value); };
The team here did testing on a actual project implementation resulting in a bugfix on the iterator and removing double namepace entry's written into the files.
js iterator usage:
for await (const [key, value] of this.keyv.iterator()) { console.log(key, value); };
const myIterator = this.keyv.iterator(); console.log(await myIterator.next()); console.log(await myIterator.next());
thank you Roland