(
options: CurriedRunPkgManagerInstallOptions,
)
| 70 | baseOptions: CurryRunPkgManagerInstallOptions, |
| 71 | ) => { |
| 72 | const curriedRunPkgManagerInstall = async ( |
| 73 | options: CurriedRunPkgManagerInstallOptions, |
| 74 | ) => |
| 75 | runPkgManagerInstall({ |
| 76 | ...baseOptions, |
| 77 | ...options, |
| 78 | }); |
| 79 | |
| 80 | return curriedRunPkgManagerInstall; |
| 81 | }; |
nothing calls this directly
no test coverage detected