Created
May 29, 2014 16:11
-
-
Save blackcoat/a8e9e2f27b385198d6bd to your computer and use it in GitHub Desktop.
Singleton Pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Singleton | |
instance = null | |
@get = -> | |
instance ?= value | |
module.exports = Singleton.get() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment