Files
Angular-Docs-Cn/modules/@angular/common/src/pipes/json_pipe.ts
T

17 lines
435 B
TypeScript
Raw Normal View History

2016-06-03 12:40:41 +02:00
import {PipeTransform, Pipe} from '@angular/core';
2016-05-31 15:22:59 -07:00
import {Json} from '../facade/lang';
2015-05-18 09:24:52 -07:00
/**
* Transforms any input value using `JSON.stringify`. Useful for debugging.
2015-05-18 09:24:52 -07:00
*
* ### Example
* {@example core/pipes/ts/json_pipe/json_pipe_example.ts region='JsonPipe'}
*
* @stable
2015-05-18 09:24:52 -07:00
*/
@Pipe({name: 'json', pure: false})
2015-08-12 12:04:54 -07:00
export class JsonPipe implements PipeTransform {
transform(value: any): string { return Json.stringify(value); }
2015-05-18 09:24:52 -07:00
}