(filePath, options = 'utf-8')
| 27 | } |
| 28 | |
| 29 | export function readFile (filePath, options = 'utf-8') { |
| 30 | return fs.readFileSync(filePath, options) |
| 31 | } |
| 32 | |
| 33 | export function writeFile (filePath, fileSource, options = 'utf-8') { |
| 34 | fs.writeFileSync(filePath, fileSource, options) |
no outgoing calls
no test coverage detected