Appearance
Identifies strings which only contain whitespace.
import { isBlank } from 'tsu' isBlank('ribbit') // false isBlank(' ') // true isBlank('') // true
/** * @param str - The string. * @returns If the string is blank. */ function isBlank(str: string): boolean