JS Utils Kit
    Preparing search index...

    Variable isProdConst

    isProd: boolean = ...

    Checks if the current environment is production.

    This is determined by comparing process.env.NODE_ENV with 'production'.

    true if NODE_ENV is set to production.

    if (isProd) {
    enableAnalytics();
    }