Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
static mergeScopeSets(A, B) {
if (A.length === 0) {
return B;
}
if (B.length === 0) {
return A;
}
return mergeScopeSets(A, B);
}
}