You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
454 B
16 lines
454 B
4 years ago
|
const exec = require('child-process-promise').exec;
|
||
|
|
||
|
module.exports = function (docxFile, image){
|
||
|
return new Promise ((resolve, reject)=>{
|
||
|
exec('mkdir word/media')
|
||
|
.then(function (result) {
|
||
|
var stdout = result.stdout;
|
||
|
var stderr = result.stderr;
|
||
|
console.log('stdout: ', stdout);
|
||
|
console.log('stderr: ', stderr);
|
||
|
})
|
||
|
.catch(function (err) {
|
||
|
console.error('ERROR: ', err);
|
||
|
});
|
||
|
}
|
||
|
)}
|