(src, dest)
| 33 | } |
| 34 | |
| 35 | export function cp (src, dest) { |
| 36 | return fs.copySync( |
| 37 | path.normalize(path.join(__dirname, '../resources/' + src)), |
| 38 | path.normalize(path.join(__dirname, '../resources/' + dest))) |
| 39 | } |
| 40 | |
| 41 | export function read (file) { |
| 42 | return fs.readFileSync(path.normalize(path.join(__dirname, '../resources/' + file)), { |
no outgoing calls
no test coverage detected