Hello, thanks for all the amazing work with this great library :)
We recently ran into a problem upgrading baconjs from 3.0.15 to 3.0.17 in the Internet Explorer browser (some of our users still use IE).
The error is due to an arrow function still being present in Bacon.mjs, which is automatically included by our babel-loader:
// line 21 in Bacon.m.js
/** @hidden */
function always(x) { return () => x;
We can solve this problem by making an exception in our babel ruleset to transpile the bacon code as well as our application code, but we just wanted to ask if this is intended or a bug?
Anyway, thank you very much for the great library!