()
| 2053 | const fullPath = pathModule.resolve(cwd, path); |
| 2054 | |
| 2055 | const remove = async () => { |
| 2056 | const rmrf = lazyRimRaf(); |
| 2057 | await rmrf(fullPath, { |
| 2058 | maxRetries: 0, |
| 2059 | recursive: true, |
| 2060 | retryDelay: 0, |
| 2061 | }); |
| 2062 | }; |
| 2063 | return { |
| 2064 | __proto__: null, |
| 2065 | path, |
no outgoing calls
no test coverage detected