kevinautin
Results
2
issues of
kevinautin
```ts import { Effect, pipe } from 'effect'; import { sql } from 'sqlx-ts'; // recognized by sqlx-ts const test1 = Effect.succeed(sql` SELECT name FROM user `); // NOT recognized...
Adds the `and` and `or` methods for better ergonomics, reducing boilerplate. In short: 1. `.and(v)` can be used instead of `.map(() => v)` 2. `.or(v)` can be used instead of...