暗色模式
判断字符串是否为空
比起 !'' 以外 额外判断 '', ' ', '\t', '\r', '\n', '\f', '\ufeff', '\u202a', '\u0000' 认为这些内容为空
!''
'', ' ', '\t', '\r', '\n', '\f', '\ufeff', '\u202a', '\u0000'
import { isBlankString } from '@vill-v/vanilla' isBlankString(' \r\n') // =>true
declare const isBlankString: (str?: string | null | undefined) => str is null | undefined;