UNPKG

n4s

Version:

typed schema validation version of enforce

7 lines (5 loc) 184 B
import { toNumber } from 'vest-utils'; // Validates that a value is not NaN export function isNotNaN(value: any): boolean { return !Number.isNaN(toNumber(value).unwrapOr(value)); }