WFCD / warframe-items

📘 Get all Warframe items directly from Warframe's API. No more messy wikia scraping.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

'map' does not work as expected on items array

Sainan opened this issue · comments

Using 'map' on the items array causes every item to be present in the result, an easy way to see this is by querying 'length':

const items = new Items({ category: ['Arch-Gun'] });
console.log(items.length);
console.log(items.map((x) => x).length);

I've attempted to fix this in #561 by reimplementing the function as was previously done with 'filter', however this fix was seemingly rejected.

Another possible fix would be to not store properties on a class extending Array.

commented

closed by #567