diff --git a/index.js b/index.js index b77245866dd63257a83eb094e084941218ebde5d..d1046105f9cbd059303343fcc7451c415865f5ea 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,3 @@ -function addNumbers(a, b) { +module.exports = function addNumbers(a, b) { return a + b; } - -module.exports = addNumbers;