UNPKG

n4s

Version:

typed schema validation version of enforce

9 lines (6 loc) 249 B
import { isStringValue } from 'vest-utils'; import { isBlank } from '../general/isBlank'; // Checks if string contains only whitespace characters export function isBlankString(str: string): boolean { return isStringValue(str) && isBlank(str); }