Cheatoid

Results 17 comments of Cheatoid
trafficstars

Bump. JSDoc has [`@callback`](https://jsdoc.app/tags-callback.html) for this purpose. Not particularly happy with TSDoc approach, but at least it somewhat works, albeit weird that it omits parameter documentation if you place caret...

> There is an `export =` syntax in TypeScript to allow modules to return plain values Already tried that and this doesn't work, as described in my post (once again...

> I imagine a feature where the end-user could apply "preserveComments: true" to their tsconfig.json Just want to point this out, an existing compiler flag/option already exists, `removeComments`: https://www.typescriptlang.org/tsconfig#removeComments So,...

In my opinion, this is one of those cases the transpiler should stick to the Lua rules instead of following "how it works in JS".

According to my quick GitHub search, there is only one place where `WebClient` is being used: [in BrowserFetcher](https://github.com/hardkoded/puppeteer-sharp/blob/39f7e683537f0f32fe67f229d68277c2da767ab6/lib/PuppeteerSharp/BrowserFetcher.cs#L54). I would take a bite and say it should be pretty easy...

> that's part of the public API Right, but is it *that* important to have that functionality? How many projects are actually using it? It is possible to do "progress...

Related: https://github.com/puppeteer/puppeteer/pull/7546/files

...I thought bytecode-loading was completely stripped rather than hacked-away... 😆 In my testing, `RunString`/`CompileString`/`lua_openscript`/whatever wrappers, it all boils down to this ultimate function: `lua_load` (or rather `luaL_loadbufferx`/`luaL_loadbuffer`, which is sometimes...

Smarty... Think again. It is not 2 bytes. I have to use 4 bytes. Because what if there are digits ahead of the `\0` Guess what, it will treat them...

Moreover you can't use escaping in long string `[[ long string ]]` at all. Instead you must use normal double/single-quote string to embed such binary data. Which means you'd also...