flag.ts 226 B

12345678
  1. export namespace Flag {
  2. export const OPENCODE_AUTO_SHARE = truthy("OPENCODE_AUTO_SHARE")
  3. function truthy(key: string) {
  4. const value = process.env[key]?.toLowerCase()
  5. return value === "true" || value === "1"
  6. }
  7. }