(scopeId: string, sourceId: string)
| 1189 | /** The map key joining a (scopeId, sourceId) pair. Exported so the runner keys |
| 1190 | * `migratedConfigs` identically to the weave's lookup. */ |
| 1191 | export const migrationSourceKey = (scopeId: string, sourceId: string): string => |
| 1192 | `${scopeId} ${sourceId}`; |
| 1193 | |
| 1194 | const sourceKey = migrationSourceKey; |
| 1195 |
no outgoing calls
no test coverage detected