blob: 6ab2f7bb589a1c64e5f7d35691754b4b2756c1c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import arrayEach from 'lodash/_arrayEach';
import rest from './rest';
export default function consoleFunc(name) {
return rest(function (fn, args) {
fn.apply(null, args.concat(rest(function (err, args) {
if (typeof console === 'object') {
if (err) {
if (console.error) {
console.error(err);
}
}
else if (console[name]) {
arrayEach(args, function (x) {
console[name](x);
});
}
}
})));
});
}
|