import {Component} from '@angular/core';
@Component({
  selector: 'json-pipe',
  template: `
	    <h2>JSON Pipe Example</h2>
	    <h4>Without JSON Pipe.</h4>
	    {{obj}}
	    <h4>With JSON Pipe.</h4>
	    {{obj | json}}
	 `
})
 
export class JSONPipe {
	obj: Object = { name: {fName: "Paul", lName:"Shan"}, site:"VoidCanvas", luckyNumbers:[7,13,69] };
}