export const isTrue = (value?: string | number | boolean | null): boolean => value === true || value === 1 || value === "true" || value === "1";