Created
April 10, 2014 11:32
-
-
Save anonymous/10371243 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 billingBroker | |
@EXTENSION = [ | |
'one', | |
'two' | |
] | |
@one: -> | |
do @hello | |
@two: -> | |
console.log(2) | |
class billingAction | |
constructor: -> | |
billingAction.prototype[def] = billingBroker[def] for def in billingBroker.EXTENSION | |
hello: -> | |
22 |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment