UNPKG

n4s

Version:

typed schema validation version of enforce

5 lines (4 loc) 148 B
// Validates that a value is truthy (not false, 0, '', null, undefined, or NaN) export function isTruthy(value: any): boolean { return !!value; }