mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-11 16:50:33 +08:00
18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
const noopfn = function () {
|
|
// noop
|
|
};
|
|
window.cxApi = {
|
|
chooseVariation() {
|
|
return 0;
|
|
},
|
|
getChosenVariation: noopfn,
|
|
setAllowHash: noopfn,
|
|
setChosenVariation: noopfn,
|
|
setCookiePath: noopfn,
|
|
setDomainName: noopfn
|
|
};
|
|
}());
|