MCPcopy Create free account
hub / github.com/TGX-Android/Publisher / compareRemoteUrls

Function compareRemoteUrls

main.js:842–849  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

840}
841
842function compareRemoteUrls (a, b) {
843 if (a === b) {
844 return true;
845 }
846 const aHttp = sshToHttpUrl(a);
847 const bHttp = sshToHttpUrl(b);
848 return aHttp === bHttp || a.toLowerCase() === b.toLowerCase();
849}
850
851function getFromToCommit (build, allowProduction) {
852 if (build.outputApplication && build.outputApplication.isPRBuild)

Callers 1

getFromToCommitFunction · 0.85

Calls 1

sshToHttpUrlFunction · 0.85

Tested by

no test coverage detected