env-utils.ts 123 B

1234567
  1. /**
  2. * convert to boolean
  3. *
  4. */
  5. export function toBoolean(value: string): boolean {
  6. return /^(true|1)$/i.test(value);
  7. }