2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-19 18:40:33 +03:00

fix: dont assign to global console

This commit is contained in:
pimlie
2019-08-03 10:48:30 +02:00
parent 6907f9ac98
commit 2c0c4c3b52
+1 -1
View File
@@ -2,7 +2,7 @@ import { hasGlobalWindow } from '../utils/window'
const _global = hasGlobalWindow ? window : global
const console = (_global.console = _global.console || {})
const console = _global.console || {}
export function warn (str) {
/* istanbul ignore next */