We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Ember
Had code like
return Ember.observer.apply(Ember, keys.concat(function () { Ember.run.throttle(this, throttled[0], throttled[1], throttled[2] || false); }));
which was turned into
return observer.apply(Ember, keys.concat(function () { throttle(this, throttled[0], throttled[1], throttled[2] || false); }));
After the codemod, Ember no longer existed. In my case I wasn't using this util anymore, so not an issue, but could be an issue for other cases.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Had code like
which was turned into
After the codemod,
Ember
no longer existed. In my case I wasn't using this util anymore, so not an issue, but could be an issue for other cases.The text was updated successfully, but these errors were encountered: