Skip to content

Instantly share code, notes, and snippets.

View jeremycx's full-sized avatar

Jeremy Childs jeremycx

View GitHub Profile
/*jshint globalstrict: true, node: true, trailing:true, unused:true */
'use strict';
var util = require('util');
module.exports = function SSEFeed() {
this.subscribers = [];
this.id = 0;
return this;