1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

Simplify a bit 9e43852 by using Array.every()

This commit is contained in:
Raymond Hill 2019-04-30 16:18:40 -04:00
parent 0714aceaaf
commit 016625465e
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1057,12 +1057,12 @@ vAPI.warSecret = (function() {
const guard = function(details) {
const url = details.url;
for ( let i = 0, n = secrets.length; i < n; i++ ) {
if ( url.indexOf(`?secret=${secrets[i]}`) !== -1 ) {
return;
}
const r = secrets.every(secret => {
return url.indexOf(`?secret=${secret}`) === -1;
});
if ( r ) {
return { redirectUrl: root };
}
return { redirectUrl: root };
};
chrome.webRequest.onBeforeRequest.addListener(