Skip to content

Instantly share code, notes, and snippets.

@psylone
Forked from anonymous/jsbin.gavivewi.coffee
Last active August 29, 2015 13:58
Show Gist options
  • Save psylone/10371364 to your computer and use it in GitHub Desktop.
Save psylone/10371364 to your computer and use it in GitHub Desktop.
Thoughts about modules
class MyModule
@EXTENSION = [
'one',
'two'
]
@one: ->
do @hello
@two: ->
console.log(2)
class MyClass
constructor: ->
MyClass.prototype[def] = MyModule[def] for def in MyModule.EXTENSION
hello: ->
22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment