mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-31 14:28:10 +00:00
6 lines
60 B
JavaScript
6 lines
60 B
JavaScript
|
function sum(a, b) {
|
||
|
return a + b;
|
||
|
}
|
||
|
|
||
|
export default sum;
|