UNPKG

hummingbird-node

Version:

Stupidly simple social media streaming for Node.js

12 lines (10 loc) 250 B
var Sediment = require('sediment'); /** * Sentiment Plugin * Calculates sentiment of post.text */ module.exports = function(post, cb) { post.attach('sentiment', Sediment.analyze(post.text())); // all done, run callback cb(null, post); };