Use arrow functions for anonymous functions where possible (part #8)#19191
Merged
Use arrow functions for anonymous functions where possible (part #8)#19191
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
teoli2003
commented
Aug 6, 2022
Josh-Cena
reviewed
Aug 8, 2022
|
|
||
| ```js | ||
| window.getDevicePixelSize = window.getDevicePixelSize || async function(elem) { | ||
| window.getDevicePixelSize = window.getDevicePixelSize || async (elem) => { |
Member
There was a problem hiding this comment.
Need parens; this looks like a polyfill?
Contributor
Author
There was a problem hiding this comment.
I've added some parenthesis, hope it is correct.
Josh-Cena
reviewed
Aug 8, 2022
files/en-us/web/api/webgl_api/webgl_model_view_projection/index.md
Outdated
Show resolved
Hide resolved
Josh-Cena
reviewed
Aug 8, 2022
files/en-us/web/api/webrtc_api/signaling_and_video_calling/index.md
Outdated
Show resolved
Hide resolved
Josh-Cena
reviewed
Aug 8, 2022
files/en-us/web/api/webrtc_api/signaling_and_video_calling/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/api/webrtc_api/signaling_and_video_calling/index.md
Outdated
Show resolved
Hide resolved
Josh-Cena
reviewed
Aug 8, 2022
files/en-us/web/api/websockets_api/writing_websocket_server/index.md
Outdated
Show resolved
Hide resolved
Josh-Cena
reviewed
Aug 8, 2022
Josh-Cena
reviewed
Aug 8, 2022
Josh-Cena
reviewed
Aug 8, 2022
Josh-Cena
reviewed
Aug 8, 2022
…dex.md Co-authored-by: Joshua Chen <[email protected]>
…ex.md Co-authored-by: Joshua Chen <[email protected]>
…ex.md Co-authored-by: Joshua Chen <[email protected]>
…ex.md Co-authored-by: Joshua Chen <[email protected]>
Co-authored-by: Joshua Chen <[email protected]>
Co-authored-by: Joshua Chen <[email protected]>
1b6c560 to
efe3edb
Compare
Josh-Cena
approved these changes
Aug 8, 2022
Member
Josh-Cena
left a comment
There was a problem hiding this comment.
All boxes are ticked on my end—LGTM!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Arrow functions are shorter and easier to read (but doesn't bind
this).