summaryrefslogtreecommitdiff
path: root/lib/internal/consoleFunc.js
blob: 35374d713d62d72287752c12081217b0298157aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import arrayEach from 'lodash/_arrayEach';
import rest from './rest';
import wrapAsync from './wrapAsync';

export default function consoleFunc(name) {
    return rest(function (fn, args) {
        wrapAsync(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);
                    });
                }
            }
        })));
    });
}