function colorer()

in error_highlighter.js [68:73]


function colorer(col) {
    if (typeof col === 'function') return col;
    return function colorIt(str) {
        return color(str, col);
    };
}