All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.shared.pipes.stringify.pipe.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'stringify'
})
export class StringifyPipe implements PipeTransform {

  transform(value: any, args?: any): any {
    return JSON.stringify(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy