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
When bundled with a module bundler (they "usually" put "use strict"), the bundle will raise a SyntaxError: Use of const in strict mode..
"use strict"
SyntaxError: Use of const in strict mode.
This is the line to blame: /lib/processor.js#L24 It could be easily turned into a var. There are no other const in the whole module.
var
const
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When bundled with a module bundler (they "usually" put
"use strict"
), the bundle will raise aSyntaxError: Use of const in strict mode.
.This is the line to blame: /lib/processor.js#L24
It could be easily turned into a
var
. There are no otherconst
in the whole module.The text was updated successfully, but these errors were encountered: