Skip to content

Commit af6c1a3

Browse files
chore: Create a dummy commit
1 parent 4fbf06b commit af6c1a3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/calculator.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@ const divide = (x, y) => {
66
return x * 1.0 / y;
77
}
88

9-
module.exports = { add, subtract, multiply, divide };
9+
const dummyFunction = () => {
10+
return "This is a dummy function";
11+
}
12+
13+
module.exports = { add, subtract, multiply, divide, dummyFunction };

0 commit comments

Comments
 (0)