Skip to content

Commit

Permalink
properly export functions
Browse files Browse the repository at this point in the history
  • Loading branch information
thousandsofthem committed Mar 10, 2015
1 parent 4104e9b commit b7b835c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion lib/client.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion lib/helper.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/client.coffee
@@ -1,6 +1,7 @@
_ = require('underscore')

apiClient = require('./api_client')
helper = require('./helper')

class Client
constructor: (options) ->
Expand Down Expand Up @@ -215,3 +216,6 @@ class Client
cb err, body

module.exports.Client = Client
module.exports.params = helper.params
module.exports.config = helper.config
module.exports.taskId = helper.taskId
2 changes: 2 additions & 0 deletions src/helper.coffee
@@ -1,3 +1,5 @@
_ = require('underscore')

params = null
task_id = null
config = null
Expand Down

0 comments on commit b7b835c

Please sign in to comment.