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
This package does not work on IE11, as it uses unsupported features:
clean_id.js
return `(${value.replace(/[\\?*+|.^${}[\]()]/g, '\\$&')})`
without.js
for...of
for (let name of objectKeys(element))
The package should be transpiled into cross-browser supported code using a tool like Babel, before it's published to NPM.
Thanks!
The text was updated successfully, but these errors were encountered:
I was able to get around this by having webpack run this package through babel-loader. In webpack.config.js:
// IE11 config.module.rules.push({ test: /\.js$/, include: path.resolve(__dirname, '../node_modules/twig-drupal-filters/'), loader: 'babel-loader', });
babel.config.js also needed updating:
const sourceType = 'unambiguous';
Sorry, something went wrong.
No branches or pull requests
This package does not work on IE11, as it uses unsupported features:
clean_id.js
line 29, use of string interpolation:without.js
line 28, use offor...of
statement:The package should be transpiled into cross-browser supported code using a tool like Babel, before it's published to NPM.
Thanks!
The text was updated successfully, but these errors were encountered: