(key: string)
| 1 | import { Config } from "effect" |
| 2 | |
| 3 | export function truthy(key: string) { |
| 4 | const value = process.env[key]?.toLowerCase() |
| 5 | return value === "true" || value === "1" |
| 6 | } |
| 7 | |
| 8 | const copy = process.env["OPENCODE_EXPERIMENTAL_DISABLE_COPY_ON_SELECT"] |
| 9 | const fff = process.env["OPENCODE_DISABLE_FFF"] |
no outgoing calls
no test coverage detected