Skip to content

Instantly share code, notes, and snippets.

@abonello
Forked from xhinking/print_filter.js
Created June 16, 2018 05:59
Show Gist options
  • Save abonello/4bdb1aaeed9b938bb2cde9d8206668e9 to your computer and use it in GitHub Desktop.
Save abonello/4bdb1aaeed9b938bb2cde9d8206668e9 to your computer and use it in GitHub Desktop.
Crossfilter & dc filter printer source: codeproject
function print_filter(filter) {
var f=eval(filter);
if (typeof(f.length) != "undefined") {}else{}
if (typeof(f.top) != "undefined") {f=f.top(Infinity);}else{}
if (typeof(f.dimension) != "undefined") {f=f.dimension(function(d) { return "";}).top(Infinity);}else{}
console.log(filter+"("+f.length+") = "+JSON.stringify(f).replace("[","[\n\t").replace(/}\,/g,"},\n\t").replace("]","\n]"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment