@itwin/core-i18n 5.2.0-dev.8 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19679,6 +19679,8 @@ class ProcessDetector {
19679
19679
  static get isElectronAppFrontend() { return typeof navigator === "object" && navigator.userAgent.toLowerCase().indexOf("electron") >= 0; }
19680
19680
  /** Is this process the backend of an Electron app? */
19681
19681
  static get isElectronAppBackend() { return typeof process === "object" && process.versions.hasOwnProperty("electron"); }
19682
+ /** Is this process running in an Internet Explorer or old Microsoft Edge browser? */
19683
+ static get isIEBrowser() { return !!document.documentMode || !!window.StyleMedia; }
19682
19684
  /** Is this process running in a browser on an iPad?
19683
19685
  * @note This method will return `true` for any frontend running on an iPad, whether it is a user-launched web browser (e.g. Safari) or the frontend of a mobile app.
19684
19686
  */