UNPKG

n4s

Version:

typed schema validation version of enforce

7 lines (5 loc) 219 B
import { isEmpty as isEmptyValue } from 'vest-utils'; // Validates that a value is empty (empty string, array, object, null, or undefined) export function isEmpty(value: any): boolean { return isEmptyValue(value); }