Using React Navigation, if ternary

How can I say IF screen is ‘HOME’ THEN show headerLeft?

screenOptions={{
            headerStyle: {backgroundColor: colors.bgMain},
            headerTintColor: 'white',
            headerLeft: () => (
                <Ionicons onPress={()=>navigation.openDrawer()} name="ios-menu" size={30} color="white"  style={{marginLeft:10}}/>
            )
        }}