Skip to content

Commit 8a2d08d

Browse files
committed
feat: add time and devide function
1 parent b75bb95 commit 8a2d08d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

index.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,18 @@ function sum(a, b) {
77
return a + b;
88
}
99

10-
function minus(a, b){
10+
function minus(a, b) {
1111
return a - b;
1212
}
1313

14+
function times(a, b) {
15+
return a * b;
16+
}
17+
18+
function devide(a, b) {
19+
return a / b;
20+
}
21+
1422
hello("Hello commitlint!");
1523

1624
module.exports = hello;

0 commit comments

Comments
 (0)