separate functions for home VS other pages

Use this:

function your_function() 
{
    if ( is_front_page() ) {
        $output = ...
    }
    else{
        $output = ...
    }
    return $output;
}

p.s. It’s not needed to use is_home(). Whoever needs the technical details, see is_front_page and is_home