We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40783a commit d4ef85aCopy full SHA for d4ef85a
nativescript-angular/application.ts
@@ -3,6 +3,8 @@ import "zone.js/dist/zone-node";
3
4
import 'reflect-metadata';
5
import './polyfills/array';
6
+import './polyfills/console';
7
+
8
import {rendererLog, rendererError} from "./trace";
9
import {SanitizationService} from '@angular/core/src/security';
10
import {isPresent, Type, print} from '@angular/core/src/facade/lang';
nativescript-angular/polyfills/console.ts
@@ -0,0 +1,7 @@
1
+if (!console.group) {
2
+ console.group = () => {};
+}
+if (!console.groupEnd) {
+ console.groupEnd = () => {};
0 commit comments