rebuild hrm

This commit is contained in:
2026-04-13 09:30:59 +08:00
parent 44a98495ab
commit cd31c74da8
12034 changed files with 548007 additions and 451275 deletions

12
node_modules/es-toolkit/dist/array/flatMapAsync.mjs generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import { flatten } from './flatten.mjs';
import { limitAsync } from './limitAsync.mjs';
async function flatMapAsync(array, callback, options) {
if (options?.concurrency != null) {
callback = limitAsync(callback, options.concurrency);
}
const results = await Promise.all(array.map(callback));
return flatten(results);
}
export { flatMapAsync };