RSS Node - Limit Returned Items

So I’m aware of the current method to limit items after an RSS is to drop in a Code node downstream after the RSS node.

EG:

const limit = 10;
return items.slice(0, limit);

While this works to truncate the feed, I think it’s high time that the RSS feed had an optional field to set the upper limit of returned feed items.

This is especially critical when working with enormous feeds (like podcast feeds) as it can significantly slow down a workflow retrieving significantly sizeable feeds, especially when working with multiple feeds in a single workflow.

I already have several use cases for this and would be more than happy to help test an updated core RSS node.