mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
5ea10b47bd
- 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
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
module.exports = {
|
|
get readCSV() {
|
|
return require('./read-csv');
|
|
},
|
|
|
|
get formatCSV() {
|
|
return require('./format-csv');
|
|
}
|
|
};
|