issuefiler

Results 40 comments of issuefiler

> # [7.3.5 `CreateDataProperty(O, P, V)`](https://tc39.es/ecma262#sec-createdataproperty) > > The abstract operation `CreateDataProperty` takes arguments `O` (an `Object`), `P` (a [property key](https://tc39.es/ecma262/#sec-object-type)), and `V` (an [ECMAScript language value](https://tc39.es/ecma262/#sec-ecmascript-language-types)) and returns either...

Is there any way to force-set the non-configurable `Object.prototype` and replace it with a `Proxy` to it? For the obfuscated code analysis purposes. I need to track down what properties...

For the last month, I successfully analyzed the generation steps of `msToken`, `X-Bogus`, and `_signature`. What I saw there, was despair: all those exhaustive detections, in tiny, random-looking tokens. _ByteDance_,...

> ``` > uri: signedURL, > ``` @carcabot, are we supposed to use the `signed_url` the `.sign()` produces? [Your other example](https://github.com/carcabot/tiktok-signature/blob/87b0ee7f0440b29063e8da07ac01cc7e3d216192/examples/user-videos.js) requires more than that, `SEC_UID`, `msToken`, and `X-Bogus` that...

Maybe put the “things-to-ignore” filter in `AddNewTorrent` or just before the `AddNewTorrent` call?

And for your concern on the performance loss due to regex filtering, it’s nothing.

Most of incoming info-hashes don’t actually make it to `ms.flush` (`NewLeech`’s `OnSuccess`). Why bother checking duplicate info-hashes with lots of expensive database calls(The query itself is cheap, but the client...

@shadowtime2000 How? `eta.es.js` filters values to configure. ```javascript // eta.es.js function hasOwnProp(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } function copyProps(toObj, fromObj) { for (var key in fromObj) { if (hasOwnProp(fromObj,...

I wish Node.js’ `fetch` were freer (“more capable”) than browser’s, while being compatible with browser’s. This is `globalThis.fetch`, which has been shipped into Node.js. I want to fully utilize Node.js’...

I don’t quite agree on this change. Anything that hides what is actually there in actual responses. Even if it’s invalid, too large a body, it should be able to...