mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
- 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
9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
module.exports = {
|
|
get readCSV() {
|
|
return require('./read-csv');
|
|
},
|
|
|
|
get formatCSV() {
|
|
return require('./format-csv');
|
|
}
|
|
};
|