UNPKG

n4s

Version:

typed schema validation version of enforce

5 lines (4 loc) 140 B
// Checks if string contains non-whitespace characters export function isNotBlank(str: string): boolean { return str.trim().length > 0; }