-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$.fn.each callback i variable is string #4
Comments
Please provide some sample code to prove the error. |
@hexydec updated |
Fixed issue in the tests for $.each() where a variable wasn't reset (#4).
@hexydec |
I am going to publish the next release in the next few weeks. In the mean time I suggest linking to the latest commit within your package.json file. You can do this by entering "hexydec/dabby#[commit id]" instead of the release number. |
Hi, I found some time this morning to finish up what I wanted to do for the next release, so it is published now, v0.9.7. Enjoy. |
$.each(['a', 'b', 'c'], (i,el) => { console.log(typeof i); console.log(i); })
The text was updated successfully, but these errors were encountered: