/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/src/console.ts
21 строка
548 B
Johnson Chu
refactor: remove unnecessary TSLint rule flags (#59365)
07 янв 2025, 19:06
07 янв 2025, 19:06
a6cdbec
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Injectable} from './di'; @Injectable({providedIn: 'platform'}) export class Console { log(message: string): void { // tslint:disable-next-line:no-console console.log(message); } // Note: for reporting errors use `DOM.logError()` as it is platform specific warn(message: string): void { console.warn(message); } }