Ghost/ghost/zip/index.js
Hannah Wolfe 62c2fce6cc Switch to OG extract-zip w/ promise based interface
- switch back from @tryghost/extract-zip to extract-zip now that it has been fixed (and is much better maintained)
- switch the internal interface to be fully promise-based and test promise-based too
2020-04-08 12:48:20 +01:00

8 lines
137 B
JavaScript

const extract = require('extract-zip');
const zipFolder = require('./lib/zip-folder');
module.exports = {
extract,
zipFolder
};