0.0.3 • Published 8 years ago

angular-2-console-pipe v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

angular-2-console-pipe

Angular 2 pipe for logging to the console from a template!

Usage:

import { PLATFORM_PIPES } from '@angular/core';
import { ConsolePipe } from 'angular-2-console-pipe';

bootstrap(App, [{
    provide: PLATFORM_PIPES,
    useValue: [ConsolePipe],
    multi:true
}]);

Then, in your template:

{{ someObject | console }}