mirror of
https://github.com/smallfawn/QLScriptPublic.git
synced 2026-01-14 22:40:42 +08:00
A
This commit is contained in:
parent
1b086b4af0
commit
bbefd0cefe
@ -209,8 +209,8 @@ function Env(t, s) {
|
|||||||
if (Object.prototype.toString.call(item) === '[object Object]') {
|
if (Object.prototype.toString.call(item) === '[object Object]') {
|
||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if(Object.prototype.toString.call(arg) === '[object Array]'){
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
@ -252,8 +252,8 @@ function Env(t, s) {
|
|||||||
if (Object.prototype.toString.call(item) === '[object Object]') {
|
if (Object.prototype.toString.call(item) === '[object Object]') {
|
||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if(Object.prototype.toString.call(arg) === '[object Array]'){
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
@ -193,8 +193,8 @@ function Env(t, s) {
|
|||||||
if (Object.prototype.toString.call(item) === '[object Object]') {
|
if (Object.prototype.toString.call(item) === '[object Object]') {
|
||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if(Object.prototype.toString.call(arg) === '[object Array]'){
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
@ -168,8 +168,8 @@ function Env(t, s) {
|
|||||||
if (Object.prototype.toString.call(item) === '[object Object]') {
|
if (Object.prototype.toString.call(item) === '[object Object]') {
|
||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if(Object.prototype.toString.call(arg) === '[object Array]'){
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
@ -171,8 +171,8 @@ function Env(t, s) {
|
|||||||
if (Object.prototype.toString.call(item) === '[object Object]') {
|
if (Object.prototype.toString.call(item) === '[object Object]') {
|
||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if(Object.prototype.toString.call(arg) === '[object Array]'){
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
@ -198,8 +198,8 @@ function Env(t, s) {
|
|||||||
if (Object.prototype.toString.call(item) === '[object Object]') {
|
if (Object.prototype.toString.call(item) === '[object Object]') {
|
||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if(Object.prototype.toString.call(arg) === '[object Array]'){
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
2
蔚来.js
2
蔚来.js
@ -107,7 +107,7 @@ function Env(t, s) {
|
|||||||
item = JSON.stringify(item)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
if (Object.prototype.toString.call(arg) === '[object Array]') {
|
||||||
item = item.join(this.logSeparator)
|
item = JSON.stringify(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let message = this.notifyStr.join(this.logSeparator);
|
let message = this.notifyStr.join(this.logSeparator);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user