aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthew J. Morrison <[email protected]>2013-09-06 22:31:08 -0500
committerMatthew J. Morrison <[email protected]>2013-09-06 22:31:08 -0500
commit8078aa060a0361d358b069f92fa07af7f9e27bd4 (patch)
treec6084e24b34c8c944958c56447b21e7f9a7e951b /lib
parent3ab2c57bdde97787c313623b4f7638e909c5aafd (diff)
downloadnode-coveralls-8078aa060a0361d358b069f92fa07af7f9e27bd4.tar.xz
node-coveralls-8078aa060a0361d358b069f92fa07af7f9e27bd4.zip
export both getOptions and getBaseOptions from getOptions.js
Also updated index.js to prevent any breaking API changes and added tests around both getOptions and getBaseOptions.
Diffstat (limited to 'lib')
-rw-r--r--lib/getOptions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/getOptions.js b/lib/getOptions.js
index 8ce948c..35187b4 100644
--- a/lib/getOptions.js
+++ b/lib/getOptions.js
@@ -98,5 +98,5 @@ var getOptions = function(cb){
});
};
-module.exports = getBaseOptions;
-module.exports = getOptions;
+module.exports.getBaseOptions = getBaseOptions;
+module.exports.getOptions = getOptions;