I'd like to get urls one by one for lower RAM consumption. Something like this using async generator: ```js for await (const url of sitemapper.fetch()) { console.log(url); } ``` It'll work well in an environment with limited memory (e.g. AWS Lambda)
I'd like to get urls one by one for lower RAM consumption.
Something like this using async generator:
It'll work well in an environment with limited memory (e.g. AWS Lambda)