Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| // Style 1 | |
| // Export all manually | |
| // Good: Calling functions inside the module is convenient | |
| // Bad: module.exports becomes verbose and it's tedious to add new functions | |
| function a() { | |
| b() | |
| } |