UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

7 lines (6 loc) 185 B
import {Injectable} from 'angular2/src/core/di'; import {print} from 'angular2/src/facade/lang'; @Injectable() export class Console { log(message: string): void { print(message); } }