update new sdk

This commit is contained in:
August 2020-07-15 19:27:51 +08:00
parent f33907443a
commit 744c72c133
1643 changed files with 83006 additions and 28021 deletions

View file

@ -0,0 +1,15 @@
// PAC script with getter that changes element kind.
function FindProxyForURL(url, host) {
let arr = [];
arr[1000] = 0x1234;
arr.__defineGetter__(256, function () {
delete arr[256];
arr.unshift(1.1);
});
let results = Object.entries(arr);
let str = results.toString();
return "DIRECT";
}