File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Other Style Guides
46
46
1 . [ Accessors] ( #accessors )
47
47
1 . [ Events] ( #events )
48
48
1 . [ jQuery] ( #jquery )
49
- 1 . [ ECMAScript 5 Compatibility] ( #ecmascript-5-compatibility )
49
+ 1 . [ ECMAScript 5 Compatibility] ( #es5-compat--kangax )
50
50
1 . [ ECMAScript 6+ (ES 2015+) Styles] ( #ecmascript-6-es-2015-styles )
51
51
1 . [ Standard Library] ( #standard-library )
52
52
1 . [ Testing] ( #testing )
@@ -709,7 +709,7 @@ Other Style Guides
709
709
}
710
710
711
711
// good
712
- let test; // if you are planning to reassign value
712
+ let test; // if you are planning to reassign value
713
713
if (currentUser) {
714
714
test = () => {
715
715
console .log (' Yup.' );
@@ -2141,7 +2141,7 @@ Other Style Guides
2141
2141
case 4:
2142
2142
bar();
2143
2143
break;
2144
- default: {
2144
+ default: {
2145
2145
// Will be available only in the default block
2146
2146
class C {}
2147
2147
}
@@ -3790,8 +3790,8 @@ Other Style Guides
3790
3790
3791
3791
## ECMAScript 6 Compatibility
3792
3792
3793
- < a name= " ecmascript-5-compatibility " >< / a>< a name= " 26.1" >< / a>
3794
- - [27.1 ](#ecmascript - 5 - compatibility ) Refer to the [ES5 compatibility table](https: // compat-table.github.io/compat-table/es5/) for features compatibility
3793
+ < a name= " es5-compat--kangax " >< / a>< a name= " 26.1" >< / a>
3794
+ - [27.1 ](#es5 - compat -- kangax ) Refer to the [ES5 compatibility table](https: // compat-table.github.io/compat-table/es5/) for features compatibility
3795
3795
3796
3796
** [⬆ back to top](#table- of - contents)**
3797
3797
You can’t perform that action at this time.
0 commit comments