Requires global Promise polyfill (breaks ie11)
Opened this issue · 1 comments
jessethomson commented
Problem
This library assumes there is a global Promise object available. As such, it breaks in IE11.
Expected
Should just work in IE11
Actual
Breaks with 'Promise' is undefined
error.
Solution
Include Promise
polyfill (or document the need to provide global Promise polyfill in order to use this library)
Example Code (not sure how many other places this is an issue)
Line 60 in 7ef7dba
theKashey commented