(options)
| 39 | } |
| 40 | |
| 41 | function asyncExtractTar(options) { |
| 42 | return new Promise((resolve, reject) => |
| 43 | targz.decompress(options, error => { |
| 44 | if (error) { |
| 45 | reject(error); |
| 46 | return; |
| 47 | } |
| 48 | resolve(); |
| 49 | }) |
| 50 | ); |
| 51 | } |
| 52 | |
| 53 | function asyncMkDirP(filepath) { |
| 54 | return new Promise((resolve, reject) => |
no test coverage detected