Closed dhilt closed 4 years ago
Also get an issue with this library and IE11 for an application developped in Angular 7:
Replace the index.js file by the one in this archive :
Maybe a pull request can be done to fix it definitively
I'm also getting this issue in IE11, it's preventing log in to the application. If the patch could be applied to the module that would really help...
IE doesn't understand ES6 (const, let and arrow functions are the ES6 things that I see in the package sources) and to provide IE compatibility (curse him) we need to have our vendor bundles in ES5. And it's not easy to transpile a specific library during bundling...
The common way is to have ./dist/compare-strings.js in the npm package repo and an npm build script for ES6 -> ES5 transpilation process. If it's ok, I can provide a PR covering this situation. What do you think?