export function toBool(value: string): boolean {
  return value === 'true';
}
