summaryrefslogtreecommitdiff
path: root/lib/internal/consoleFunc.js
blob: e2d615059e76393a6283eb1935c142e2c94d8531 (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 'lodash/_baseRest';

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);
                    });
                }
            }
        })]));
    });
}