2016-04-28 17:50:03 -07:00
|
|
|
import {Injectable, PipeTransform, WrappedValue, Pipe} from '@angular/core';
|
|
|
|
import {Json} from '../../src/facade/lang';
|
|
|
|
|
2015-05-18 09:24:52 -07:00
|
|
|
|
|
|
|
/**
|
2015-11-02 15:46:59 -08:00
|
|
|
* Transforms any input value using `JSON.stringify`. Useful for debugging.
|
2015-05-18 09:24:52 -07:00
|
|
|
*
|
2015-10-19 15:37:32 +01:00
|
|
|
* ### Example
|
2015-11-02 15:46:59 -08:00
|
|
|
* {@example core/pipes/ts/json_pipe/json_pipe_example.ts region='JsonPipe'}
|
2015-05-18 09:24:52 -07:00
|
|
|
*/
|
2016-04-25 21:58:48 -07:00
|
|
|
/* @ts2dart_const */
|
2015-10-27 10:18:29 +00:00
|
|
|
@Pipe({name: 'json', pure: false})
|
2015-08-06 10:39:02 -07:00
|
|
|
@Injectable()
|
2015-08-12 12:04:54 -07:00
|
|
|
export class JsonPipe implements PipeTransform {
|
2016-04-22 15:33:32 -07:00
|
|
|
transform(value: any): string { return Json.stringify(value); }
|
2015-05-18 09:24:52 -07:00
|
|
|
}
|