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