@@ -172,7 +172,7 @@ var connection = new SockJS(
172
172
// to avoid spamming the console. Disconnect usually happens
173
173
// when developer stops the server.
174
174
connection . onclose = function ( ) {
175
- if ( typeof console !== 'undefined' ) {
175
+ if ( typeof console !== 'undefined' && typeof console . info === 'function' ) {
176
176
console . info (
177
177
'The development server has disconnected.\nRefresh the page if necessary.'
178
178
) ;
@@ -186,8 +186,8 @@ var hasCompileErrors = false;
186
186
187
187
function clearOutdatedErrors ( ) {
188
188
// Clean up outdated compile errors, if any.
189
- if ( typeof console !== 'undefined' ) {
190
- if ( hasCompileErrors && typeof console . clear === 'function' ) {
189
+ if ( typeof console !== 'undefined' && typeof console . clear === 'function' ) {
190
+ if ( hasCompileErrors ) {
191
191
console . clear ( ) ;
192
192
}
193
193
}
@@ -226,7 +226,7 @@ function handleWarnings(warnings) {
226
226
errors : [ ] ,
227
227
} ) ;
228
228
229
- if ( typeof console !== 'undefined' ) {
229
+ if ( typeof console !== 'undefined' && typeof console . warn === 'function' ) {
230
230
for ( var i = 0 ; i < formatted . warnings . length ; i ++ ) {
231
231
console . warn ( stripAnsi ( formatted . warnings [ i ] ) ) ;
232
232
}
@@ -266,7 +266,7 @@ function handleErrors(errors) {
266
266
showErrorOverlay ( formatted . errors [ 0 ] ) ;
267
267
268
268
// Also log them to the console.
269
- if ( typeof console !== 'undefined' ) {
269
+ if ( typeof console !== 'undefined' && typeof console . error === 'function' ) {
270
270
for ( var i = 0 ; i < formatted . errors . length ; i ++ ) {
271
271
console . error ( stripAnsi ( formatted . errors [ i ] ) ) ;
272
272
}
0 commit comments