Skip to content

Commit b75bb95

Browse files
committed
feat: add minus function
1 parent 4b8aae2 commit b75bb95

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ function sum(a, b) {
77
return a + b;
88
}
99

10+
function minus(a, b){
11+
return a - b;
12+
}
13+
1014
hello("Hello commitlint!");
1115

1216
module.exports = hello;

0 commit comments

Comments
 (0)