Skip to content

Instantly share code, notes, and snippets.

@fish2000
Created December 23, 2010 17:49
Show Gist options
  • Save fish2000/753296 to your computer and use it in GitHub Desktop.
Save fish2000/753296 to your computer and use it in GitHub Desktop.
no longer necessary -- but some snippets you're fond of, in spite of their unapologetic sprawling impracticality.
var deltadata = _(chart_data.get_series()).map(function (i) {
return i.data;
}).reduceRight(function (a,b) {
return a.concat(b);
}).map(function (i) {
return i[1];
}).reduce(function (a,b) {
return a + b;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment