mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-24 10:23:43 +03:00
15 lines
228 B
JavaScript
15 lines
228 B
JavaScript
|
'use strict';
|
||
|
|
||
|
window.utils = {
|
||
|
|
||
|
areSettingsNotControlledFor(details) {
|
||
|
|
||
|
return ['controlled_by_other', 'not_controllable']
|
||
|
.some( (prefix) => details.levelOfControl.startsWith(prefix) );
|
||
|
|
||
|
},
|
||
|
|
||
|
};
|
||
|
|
||
|
window.apis = {};
|