I have an angular application that works fine on all browsers, including IE11. However, in several cases (still not sure why), IE will throw a TypeError, which is caused by Angular CDK platform umd javascript:
var hasV8BreakIterator = (typeof Intl !== 'undefined' && ((/** @type {?} */ (Intl))).v8BreakIterator);
Which is minified to:
o="undefined"!=typeof Intl&&Intl.v8BreakIterator
The error is:
TypeError: Intl is not available
My question is, in general, what does "TypeError: xxx is not available" mean, and more specifically, if there is any reason this will come up.