JS Utils Kit
    Preparing search index...

    Variable isDevConst

    isDev: boolean = ...

    Checks if the current environment is development.

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

    true if NODE_ENV is set to development.

    if (isDev) {
    console.log('Dev mode enabled');
    }