Skip to content

Instantly share code, notes, and snippets.

View tsuz's full-sized avatar

T Suzuki tsuz

  • Tokyo, Japan
  • 13:16 (UTC +09:00)
View GitHub Profile
@tsuz
tsuz / EventSystem.js
Last active October 18, 2018 16:49 — forked from yitsushi/EventSystem.js
EventSystem that I use with React.js to communicate between components
"use strict"
class EventSystem{
constructor() {
this.queue = {};
this.maxNamespaceSize = 50;
}