mirror of
https://github.com/developit/microbundle.git
synced 2026-01-18 13:56:35 +00:00
4 lines
96 B
JavaScript
4 lines
96 B
JavaScript
export async function two(...args) {
|
|
return args.reduce((total, value) => total + value, 0);
|
|
}
|