Created
April 6, 2012 17:16
-
-
Save dperrymorrow/2321442 to your computer and use it in GitHub Desktop.
Coffeescript Singleton
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 = undefined # Must be declared here to force the closure on the class | |
@get: (args) -> # Must be a static method | |
_instance ||= new _Singleton args |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment