(fsPath, options)
| 445 | }, |
| 446 | |
| 447 | readFileSync(fsPath, options) { |
| 448 | using _ = slowLogging`fs.readFileSync(${fsPath})` |
| 449 | return fs.readFileSync(fsPath, { encoding: options.encoding }) |
| 450 | }, |
| 451 | |
| 452 | readFileBytesSync(fsPath) { |
| 453 | using _ = slowLogging`fs.readFileBytesSync(${fsPath})` |
no outgoing calls
no test coverage detected