Skip to content

Instantly share code, notes, and snippets.

View shobhitg's full-sized avatar

Shobhit Gupta shobhitg

View GitHub Profile
@shobhitg
shobhitg / ES6_Singlet.js
Created April 24, 2016 20:13 — forked from milankarunarathne/ES6_Singlet.js
Create Singleton pattern using ES6
'use strict';
/**
* Created by Milan Karunarathne
* Email: mhkarunarathne@gmail.com
* May be freely distributed under the MIT license
*/
import EventEmitter from 'events';
class Single extends EventEmitter {