Angular Convert Boolean в да нет

convertBooleanToYesOrNo(boolean: Boolean) {
    return boolean ? 'yes' : 'no';
}
Adorable Anteater