Open edemaine opened 3 years ago
The following code:
window.requestAnimationFrame frame = (ms) -> window.requestAnimationFrame frame
generates the following lint error:
error 'frame' is assigned a value but never used coffee/no-unused-vars
I guess the use of frame within the inner scope incorrectly doesn't count as a use?
frame
The following code:
generates the following lint error:
I guess the use of
frame
within the inner scope incorrectly doesn't count as a use?