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
If minified web-animations-js is run with 'use strict' at the top of the file, there is an error:
Uncaught TypeError: Cannot set property 'true' of undefined
coming from https://github.com/web-animations/web-animations-js/blob/master/web-animations-next-lite.min.js#L15. This is due to the fact that a global "this" is undefined in strict mode, rather than the window. The iife is called like:
function(a, b) { b["true"] = ...... } ({}, function {return this}())
The text was updated successfully, but these errors were encountered:
Is there any progress? We still need to disable strict mode when using babel with es2015 preset 👎
es2015
Sorry, something went wrong.
+1
No branches or pull requests
If minified web-animations-js is run with 'use strict' at the top of the file, there is an error:
Uncaught TypeError: Cannot set property 'true' of undefined
coming from https://github.com/web-animations/web-animations-js/blob/master/web-animations-next-lite.min.js#L15. This is due to the fact that a global "this" is undefined in strict mode, rather than the window. The iife is called like:
function(a, b) { b["true"] = ...... } ({}, function {return this}())
The text was updated successfully, but these errors were encountered: