1
0
Fork 0
mirror of https://github.com/kou029w/jest-hands-on.git synced 2025-03-04 12:05:17 +00:00
jest-hands-on/templates/template/sum.js
2022-02-24 17:06:32 +09:00

5 lines
60 B
JavaScript

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