Skip to content

Instantly share code, notes, and snippets.

@Chadtech
Created February 10, 2016 00:09
Show Gist options
  • Select an option

  • Save Chadtech/093ce66f9489a7724da8 to your computer and use it in GitHub Desktop.

Select an option

Save Chadtech/093ce66f9489a7724da8 to your computer and use it in GitHub Desktop.
# module.coffee
module.exports.four = 4
module.exports = -> console.log 'DOPE'
# app.coffee
ye = require './module'
ye()
# 'DOPE'
console.log ye.four
# 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment