(p)
| 43 | } |
| 44 | |
| 45 | function mkdir (p) { |
| 46 | if (!fs.existsSync(p)){ |
| 47 | fs.mkdirSync(p); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | function copy (origin, newFile) { |
| 52 | fs.createReadStream(origin).pipe(fs.createWriteStream(newFile)); |
no outgoing calls
no test coverage detected
searching dependent graphs…