File

src/pipes/csa/csa.ts

Metadata

Methods

transform
transform(value: string | string[])
Parameters :
Name Type Optional
value string | string[] No
Returns : any
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'csa',
})
export class CSAPipe implements PipeTransform {

  transform(value: string | string[]) {
    if (typeof value === 'string') {
        return value;
    } else if (value instanceof Array) {
        return value.join(', ');
    } else {
        return value;
    }
  }
}

results matching ""

    No results matching ""