2015-11-06 17:34:07 -08:00
|
|
|
import {isBlank, isPresent, Json, CONST} from 'angular2/src/facade/lang';
|
2015-11-18 15:55:43 -08:00
|
|
|
import {Injectable, PipeTransform, WrappedValue, Pipe} from 'angular2/core';
|
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
|
|
|
*/
|
2015-06-22 17:11:55 -07:00
|
|
|
@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 {
|
2015-08-28 11:29:19 -07:00
|
|
|
transform(value: any, args: any[] = null): string { return Json.stringify(value); }
|
2015-05-18 09:24:52 -07:00
|
|
|
}
|