@dcloudio/uni-shared
Advanced tools
Comparing version 3.0.0-alpha-3000020210826001 to 3.0.0-alpha-3000020210827002
@@ -399,3 +399,4 @@ 'use strict'; | ||
function formatAppLog(type, filename, ...args) { | ||
console[type](normalizeLog(type, filename, args)); | ||
const res = normalizeLog(type, filename, args); | ||
res && console[type](res); | ||
} | ||
@@ -402,0 +403,0 @@ |
@@ -395,3 +395,4 @@ import { isHTMLTag, isSVGTag, hyphenate, camelize, extend, isString, isPlainObject, isArray, toTypeString, toRawType, capitalize } from '@vue/shared'; | ||
function formatAppLog(type, filename, ...args) { | ||
console[type](normalizeLog(type, filename, args)); | ||
const res = normalizeLog(type, filename, args); | ||
res && console[type](res); | ||
} | ||
@@ -398,0 +399,0 @@ |
{ | ||
"name": "@dcloudio/uni-shared", | ||
"version": "3.0.0-alpha-3000020210826001", | ||
"version": "3.0.0-alpha-3000020210827002", | ||
"description": "@dcloudio/uni-shared", | ||
@@ -21,3 +21,3 @@ "main": "./dist/uni-shared.cjs.js", | ||
}, | ||
"gitHead": "9e264c3698477425478bb5676b334785460cf0b9" | ||
"gitHead": "2da0ef304894444752bfc6a3b27cebe17623eed4" | ||
} |
106203
2788