adfb3fe499
- Creating a better, more long-term API here - compress and extract are opposite, neat terms - Use new Promise to get rid of callback argument when using archiver to compress a folder - Add options argument, and make a couple of key details configurable - Make the response intelligable - Ensure both functions are consistent - Updated tests to match
5 lines
101 B
JavaScript
5 lines
101 B
JavaScript
module.exports = {
|
|
extract: require('./lib/extract'),
|
|
compress: require('./lib/compress')
|
|
};
|