Ghost/core/server/lib/fs/index.js
Hannah Wolfe 5ea10b47bd Replaced zip tools with @tryghost/zip
- Moved zipFolder to a new package
- also exposing extract-zip from the new package
- new package has the API pre-promisified
- also uses @tryghost/extract-zip instead of extract-zip, which has bugfixes
2020-03-20 21:08:57 +00:00

10 lines
156 B
JavaScript

module.exports = {
get readCSV() {
return require('./read-csv');
},
get formatCSV() {
return require('./format-csv');
}
};