Skip to content

Instantly share code, notes, and snippets.

@demosifter
Last active October 12, 2016 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save demosifter/bd0cd22a5500a1d1df1a3ea78bbac34f to your computer and use it in GitHub Desktop.
Save demosifter/bd0cd22a5500a1d1df1a3ea78bbac34f to your computer and use it in GitHub Desktop.
module.exports = function (got) {
const total = got.in.data.reduce((p, d) => p + parseInt(d.value), 0);
return {
key: 'word_count',
value: total
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment