diff options
| author | Matthew J. Morrison <[email protected]> | 2013-09-06 22:31:08 -0500 |
|---|---|---|
| committer | Matthew J. Morrison <[email protected]> | 2013-09-06 22:31:08 -0500 |
| commit | 8078aa060a0361d358b069f92fa07af7f9e27bd4 (patch) | |
| tree | c6084e24b34c8c944958c56447b21e7f9a7e951b /lib | |
| parent | 3ab2c57bdde97787c313623b4f7638e909c5aafd (diff) | |
| download | node-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.js | 4 |
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; |
