(filename: str)
| 250 | |
| 251 | |
| 252 | def existsSync(filename: str) -> bool: |
| 253 | filename = os.path.normpath(filename) |
| 254 | return os.path.exists(filename) |
| 255 | |
| 256 | |
| 257 | bootstrap.modules.fs.statSync_inner = statSync_inner |
nothing calls this directly
no outgoing calls
no test coverage detected