(text, file)
| 29 | } |
| 30 | |
| 31 | export function write (text, file) { |
| 32 | return fs.writeFileSync(path.normalize(path.join(__dirname, '../resources/' + file)), text) |
| 33 | } |
| 34 | |
| 35 | export function cp (src, dest) { |
| 36 | return fs.copySync( |
no outgoing calls
no test coverage detected