| 211 | return url.href; |
| 212 | } |
| 213 | |
| 214 | function pathExists(path: string): boolean { |
| 215 | if (runtimeGlobal.__SHOJI_PATH_EXISTS__) { |
| 216 | return runtimeGlobal.__SHOJI_PATH_EXISTS__(path); |
| 217 | } |
| 218 | try { |
| 219 | if (!runtimeGlobal.Deno?.statSync) return false; |
nothing calls this directly
no outgoing calls
no test coverage detected