JS Utils Kit
    Preparing search index...

    Variable isCIConst

    isCI: boolean = ...

    Determines whether the current runtime environment is a Continuous Integration (CI) environment.

    Detection is performed by:

    1. Checking for known CI-specific environment variables
    2. Checking value-based CI identifiers via CI_NAME
    if (isCI) {
    console.log("Running in CI");
    }

    true if running inside a CI environment