process: function()

in src/toolkit.js [190:201]


    process: function(inlets) {
        // FIXME: remove the handler in this node and use the one in layers node
        //        instead
        if (updateFssColors && inlets.palette) {
            updateFssColors(0, inlets.palette.slice(0, 2));
            updateFssColors(1, inlets.palette.slice(1, 2));
        }
        return {
            palette: inlets.palette,
            product: inlets.product
        };
    }