File

src/app/shared/pipes/boolean-text.pipe.ts

Metadata

Name booleanText

Methods

transform
transform(value: any, truthyText: string, falsyText: string)
Parameters :
Name Type Optional Default value
value any No
truthyText string No this.i18n('Yes')
falsyText string No this.i18n('No')
Returns : string
import { Pipe, PipeTransform } from '@angular/core';

import { I18n } from '@ngx-translate/i18n-polyfill';

@Pipe({
  name: 'booleanText'
})
export class BooleanTextPipe implements PipeTransform {
  constructor(private i18n: I18n) {}

  transform(
    value: any,
    truthyText: string = this.i18n('Yes'),
    falsyText: string = this.i18n('No')
  ): string {
    return Boolean(value) ? truthyText : falsyText;
  }
}

result-matching ""

    No results matching ""