(src, encoding = 'utf8')
| 113 | * @returns {Promise<string>} |
| 114 | */ |
| 115 | export async function readFile(src, encoding = 'utf8') { |
| 116 | return await fs.readFile(src, encoding); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * @param {string} src |
no outgoing calls
no test coverage detected