If you want to do the same with the spread syntax, you can use the following:
function handleCall(...args) {
callSubFunction(...args);
}
If you want to do the same with the spread syntax, you can use the following:
function handleCall(...args) {
callSubFunction(...args);
}