/** * Checks a value to see if it is a String containing either no characters OR no characters _except_ for whitespace. * @param {*} val - A value of any type * @returns {boolean} Whether or not the value is a blank string */ export default function isBlankString(val: any): val is string