Created
May 14, 2012 06:06
-
-
Save Radagaisus/2692091 to your computer and use it in GitHub Desktop.
Fuck Require
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
| # Thank you ZapaaJS! | |
| # congrats to require() for making nodejs so awful | |
| # for dividing code to files. | |
| include = (file, args...) -> | |
| file = require file | |
| file.include.apply(this, args) | |
| file | |
| # index.coffee | |
| @stuff = 3 | |
| include './something' | |
| # something.coffee | |
| stuff = 5 | |
| @include = -> | |
| log @stuff # 3 | |
| log stuff # 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment