UNPKG

reductio

Version:

Reductio: Crossfilter groupings

13 lines (10 loc) 343 B
import cap from './cap'; import sortBy from './sortBy'; export default function(reductio){ reductio.postprocessors = {}; reductio.registerPostProcessor = function(name, func){ reductio.postprocessors[name] = func; }; reductio.registerPostProcessor('cap', cap); reductio.registerPostProcessor('sortBy', sortBy); }