We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe4fe9 commit 064e3bfCopy full SHA for 064e3bf
README.md
@@ -1072,16 +1072,16 @@ Other Style Guides
1072
1073
```javascript
1074
// bad
1075
- (foo) =>
+ foo =>
1076
bar;
1077
1078
1079
(bar);
1080
1081
// good
1082
- (foo) => bar;
1083
- (foo) => (bar);
1084
- (foo) => (
+ foo => bar;
+ foo => (bar);
+ foo => (
1085
bar
1086
)
1087
```
0 commit comments