Appearance
Identifies empty strings.
import { isEmpty } from 'tsu' isEmpty('ribbit') // false isEmpty(' ') // false isEmpty('') // true
/** * @param str - The string. * @returns If the string is empty. */ function isEmpty(str: string): boolean