-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
87 lines (75 loc) · 1.54 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* eslint-disable no-empty */
const apply = Function.prototype.apply;
export function polyfill() {
const g = typeof window !== 'undefined' ? window : {};
const _console = g.console || {};
const methods = [
'assert',
'clear',
'count',
'debug',
'dir',
'dirxml',
'exception',
'error',
'group',
'groupCollapsed',
'groupEnd',
'info',
'log',
'profile',
'profileEnd',
'table',
'time',
'timeEnd',
'timeStamp',
'trace',
'warn',
];
const console = {};
for (let i = 0; i < methods.length; i++) {
const key = methods[i];
console[key] = function () {
if (typeof _console[key] === 'undefined') {
return;
}
// 添加容错处理
try {
return apply.call(_console[key], _console, arguments);
} catch (e) {}
};
}
g.console = console;
}
export function safeExec(cmd, ...args) {
try {
return apply.call(console[cmd], console, args);
} catch (e) {}
}
export function log(...args) {
return safeExec('log', ...args);
}
export function info(...args) {
return safeExec('info', ...args);
}
export function warn(...args) {
return safeExec('warn', ...args);
}
export function error(...args) {
return safeExec('error', ...args);
}
export function log1(msg) {
try {
return console.log('log:', msg);
} catch (e) {}
}
export function warn1(msg) {
try {
return console.warn('warn:', msg);
} catch (e) {}
}
export function error1(msg) {
try {
return console.error('error:', msg);
} catch (e) {}
}