1
0
Fork 0
mirror of https://github.com/kou029w/nodejs-hands-on.git synced 2025-04-12 22:46:23 +00:00
nodejs-hands-on/templates/template/sum.js
2023-12-19 16:50:59 +09:00

5 lines
60 B
JavaScript

function sum(a, b) {
return a + b;
}
export default sum;