JS Utils Kit
    Preparing search index...

    Type Alias Environment

    Environment: typeof Environment[keyof typeof Environment]

    Represents the standard runtime environments used in application development.

    This enum is typically used with process.env.NODE_ENV to determine whether the app is running in development, production, or test mode.

    if (process.env.NODE_ENV === Environment.DEV) {
    console.log('Running in development mode');
    }