UNPKG

n4s

Version:

typed schema validation version of enforce

7 lines (5 loc) 244 B
import { isNotEmpty as isNotEmptyValue } from 'vest-utils'; // Checks if value is not empty (not null, undefined, empty string, empty array, or empty object) export function isNotEmpty(value: any): boolean { return isNotEmptyValue(value); }