Skip to content

Commit

Permalink
fix: change function type
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecesr committed Oct 29, 2024
1 parent 84a29e4 commit 01f0826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/p1/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = function sum(a, b) {
module.exports = (a, b) => {
return a+b;
}

0 comments on commit 01f0826

Please sign in to comment.