(sql, params, transformRows)
| 198 | export const make = ( |
| 199 | options: D1ClientConfig |
| 200 | ): Effect.Effect<D1Client, never, Scope.Scope | Reactivity.Reactivity> => |
| 201 | Effect.gen(function*() { |
| 202 | const compiler = Statement.makeCompilerSqlite(options.transformQueryNames) |
| 203 | const transformRows = options.transformResultNames ? |
| 204 | Statement.defaultTransforms(options.transformResultNames).array : |
| 205 | undefined |
| 206 | const spanAttributes: Array<readonly [string, unknown]> = [ |
| 207 | ...(options.spanAttributes ? Object.entries(options.spanAttributes) : []), |
nothing calls this directly
no test coverage detected
searching dependent graphs…