AnyhowStep

Results 86 issues of AnyhowStep

Looking at this, https://github.com/expressjs/express/blob/master/lib/request.js#L79 It seems like express checks `referrer` (with two "r"s) first, then `referer` next. Is there a particular reason why the double-r is checked first? It seems...

## Search Terms object destructuring assignment, comment ## Suggestion ```ts interface MyInterface { /** * I am x */ x : number; /** * I am y */ y :...

Suggestion
Awaiting More Feedback

```js db = new Database(); db.create_function( "returnZero", () => 0 ); db.exec("SELECT returnZero(), 0"); ``` Expected: returnZero() | 0 ---|--- 0 | 0 Actual: returnZero() | 0 ---|--- null |...

Repro, https://github.com/AnyhowStep/nearley-2.20.1-large-grammar-file-bug Original comment, https://github.com/kach/nearley/issues/358#issuecomment-714082295 Workarounds, + Downgrade to `[email protected]` + Copy 2.11.2's `nearley-language-bootstrapped.js` and replace 2.20.1's `nearley-language-bootstrapped.js` ----- Given enough repetitions of the following (or a large enough grammar...

```ts declare const src : number[]; declare function foo (dst : ConcatArray) : void; //This is allowed by TS foo(src); ``` According to TS, `number[]` is assignable to `ConcatArray`. But...

Right now, the default with this library is SERIALIZABLE. The problem here is that this causes deadlocks **really** easily. How often do people **really** need SERIALIZABLE, vs the more relaxed...

enhancement

https://github.com/microsoft/TypeScript/issues/38235 This is causing problems with the `FindMapCompatibilityError` and `FindRefCompatibilityError` types

For example, ```ts const myTable = sql.table("myTable"); pool.acquire(async (connection) => { //Place all database calls inside here const row = await sql.from(myTable) .select(columns => [columns]) .fetchAll(connection); console.log(row); }); ``` [Playground](https://anyhowstep.github.io/tsql-sqlite3-browser/test-playground/public/#pre-ts/CIJQ8gCgBAKgggIQDIFEoEkBiUUA10DKMBUAtgJ4wCGARgDYCmA3AFADCIKcMa8yaFavQZQAFCyhQAkINqN0AEwwA5HgHEUIKBBDoAsnBABNKAGkUJuAFUYYdMo4o9KVVGVgYbq0iQsAlKwsAA4ATlQA5qRUUAAucgwA+gAeAJYAdgBmAPaissIBLEA#ts/PQKgUABFEIIDZwgewGYQC4AsCWBnCeEAhgMYkCmuu2ARnORAOZxI1EICeBAdhjvgAU4RDowBOSAK7cAJgDowkaNgC2AByRj0EEMXy4AjohQSVEAEQABQ5OwJgNu3HMBuJVFUatOvRENxsdHIAZggTJDMrR3t-QJCAWhoJAHdccjFXdwgZchJhMQYSJG5cbQ0kRAAuPwM44LkBJAq3EGBFIpLtFQ4AFSI6BgBeGrg5dH76AApzbr6B8wBKNzBy0dIDWwLJolwObhIISY7uXPRsYoWIQYA+CABvLOBgIVIGdkQZInG2NIgSd-w2BK2ByEEw6XIWQ6pQgKSuxGSRECIzk4RUk1mE3ICyy0AgcjS9BI6COFUkKhKV1uAG0inBySUALo4vF41HkdAkTDwOCk7gnYnnbhLKHFXAVchyFiMSYpEUAXxFQA#post-ts/MoUQMiDCAqAEBUsBiAlA8gWVgWwJ7QEMAjAGwFMBuIA)...

bug

https://aws.amazon.com/rds/proxy/ I'm pretty sure we don't need to write tests for this because **I think** every bit of code assumes connections will always come from a pool. So, we never...

testing
research