export function isString(value: string | null | undefined): value is string { return typeof value === 'string' }