mirror of
https://github.com/shanmiteko/LotteryAutoScript.git
synced 2026-06-12 21:03:13 +08:00
10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
/**
|
|
* @param {Array<()=>any>} fns
|
|
*/
|
|
function par_run(fns) {
|
|
return Promise.all((fns.map(fn => fn())))
|
|
}
|
|
|
|
module.exports = {
|
|
par_run
|
|
} |