feat(core): Add concurrent processing support

This commit is contained in:
2025-01-04 13:11:58 +01:00
parent e0a9030bcd
commit 7b3965ab2b
6 changed files with 7128 additions and 2758 deletions

View File

@@ -1,3 +1,5 @@
export * from './classes.concurrentprocessor.js';
export const map = async <T = any, R = any>(
arrayArg: T[],
mapFunction: (itemArg: T) => Promise<R>