const isValidString = (value: string): boolean => value !== null && value !== undefined && value.trim().length !== 0; export default isValidString;