File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ Other Style Guides
289
289
const has = Object.prototype.hasOwnProperty; // cache the lookup once, in module scope.
290
290
/* or */
291
291
import has from 'has';
292
- …
292
+ // ...
293
293
console.log(has.call(object, key));
294
294
` ` `
295
295
@@ -2915,7 +2915,7 @@ Other Style Guides
2915
2915
// bad
2916
2916
$ (this ).trigger (' listingUpdated' , listing .id );
2917
2917
2918
- ...
2918
+ // ...
2919
2919
2920
2920
$ (this ).on (' listingUpdated' , (e , listingId ) => {
2921
2921
// do something with listingId
@@ -2928,7 +2928,7 @@ Other Style Guides
2928
2928
// good
2929
2929
$ (this ).trigger (' listingUpdated' , { listingId: listing .id });
2930
2930
2931
- ...
2931
+ // ...
2932
2932
2933
2933
$ (this ).on (' listingUpdated' , (e , data ) => {
2934
2934
// do something with data.listingId
You can’t perform that action at this time.
0 commit comments