Your IP : 216.73.216.79


Current Path : /var/www/html/reddsis/node_modules/apexcharts/src/utils/
Upload File :
Current File : /var/www/html/reddsis/node_modules/apexcharts/src/utils/Environment.js

// @ts-check
/**
 * Environment detection utility for SSR support
 * Detects whether code is running in browser or Node.js environment
 */
export class Environment {
  /**
   * Check if running in server-side rendering environment (Node.js)
   * @returns {boolean} True if in SSR/Node.js, false if in browser
   */
  static isSSR() {
    return typeof window === 'undefined' || typeof document === 'undefined'
  }

  /**
   * Check if running in browser environment
   * @returns {boolean} True if in browser, false if in SSR/Node.js
   */
  static isBrowser() {
    return !this.isSSR()
  }

  /**
   * Check if a specific browser API is available
   * @param {string} api - Name of the API to check (e.g., 'ResizeObserver')
   * @returns {boolean} True if API is available
   */
  static hasAPI(api) {
    if (this.isSSR()) return false
    return typeof (/** @type {any} */ (window)[api]) !== 'undefined'
  }

  /**
   * Returns the global Apex config object regardless of environment.
   * In browser: window.Apex; in SSR/Node.js: global.Apex; fallback: {}.
   * @returns {any}
   */
  static getApex() {
    if (typeof window !== 'undefined' && window.Apex) return window.Apex
    if (typeof global !== 'undefined' && global.Apex) return global.Apex
    return {}
  }
}