8 lines
170 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
function call(funcs, ...args) {
if (Array.isArray(funcs)) {
funcs.forEach(func => call(func, ...args));
2024-08-02 18:19:39 +08:00
} else {
return funcs(...args);
}
2024-01-29 09:26:07 +08:00
}
export { call };