Skip to content

Instantly share code, notes, and snippets.

Verifying my Blockstack ID is secured with the address 1Ju5N1EFpMPcbTppkffFzFGHBTGzLgymMQ https://explorer.blockstack.org/address/1Ju5N1EFpMPcbTppkffFzFGHBTGzLgymMQ
@averykimball
averykimball / reflux.js
Created November 5, 2015 10:03 — forked from spoike/reflux.js
A simpler implementation of React.JS's Flux
var EventEmitter = require('events').EventEmitter,
_ = require('lodash');
/**
* Creates an action functor object
*/
exports.createAction = function() {
var action = new EventEmitter(),
eventLabel = "action",