Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. # module.coffee
  2.  
  3. module.exports.four = 4
  4. module.exports = -> console.log 'DOPE'
  5.  
  6. # app.coffee
  7. ye = require './module'
  8.  
  9. ye()
  10. # 'DOPE'
  11. console.log ye.four
  12. # 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement