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