Ghost/ghost/zip/index.js
Hannah Wolfe adfb3fe499 Consistent interface and response
- 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
2020-04-08 12:48:20 +01:00

5 lines
101 B
JavaScript

module.exports = {
extract: require('./lib/extract'),
compress: require('./lib/compress')
};