()
| 384 | return gitPromise as Promise<T>; |
| 385 | }; |
| 386 | const loadHttp = (): Promise<object> => { |
| 387 | if (!httpPromise) httpPromise = loadDefaultHTTP(); |
| 388 | return httpPromise; |
| 389 | }; |
| 390 | const loadDiffPatch = (): Promise<CreatePatchFn> => { |
| 391 | if (!createPatchPromise) createPatchPromise = loadCreatePatch(); |
| 392 | return createPatchPromise; |
no test coverage detected