This commit is contained in:
Gabriel Grubba
2023-12-20 09:57:54 -03:00
parent 7f75091b09
commit b7b339ff4e

View File

@@ -88,11 +88,9 @@ export function createMap(names) {
"IterationCallback",
];
Object.keys(apiList).forEach((key) => {
if (TO_IGNORE.includes(key)) {
delete apiList[key];
}
});
for (const key of Object.keys(apiList))
if (TO_IGNORE.includes(key)) delete apiList[key];
return apiList;
}