UNPKG

ineed

Version:

Web scraping and HTML-reprocessing. The easy way.

17 lines (13 loc) 285 B
module.exports = { name: 'comments', extends: 'collect', init: function () { this.collection = []; }, onComment: function (comment) { this.collection.push(comment); }, getCollection: function () { return this.collection; } };