We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b33d168 + 19ffef7 commit c7afb4eCopy full SHA for c7afb4e
README.md
@@ -3,3 +3,5 @@ git flow is the set of extensions of git
3
4
## Releases
5
### 1.0.0
6
+
7
+### 1.0.1
index.js
@@ -4,14 +4,14 @@ console.log("Collaborating in this feature");
var x = 10;
const calc = (a, b) => {
- console.log(a+b);
+ console.log( a + b );
8
}
9
10
calc(4, 5);
11
12
13
const multi = (a, b) => {
14
- console.log(a*b);
+ console.log( a * b );
15
16
17
multi(4, 5);
0 commit comments