UNPKG

n4s

Version:

typed schema validation version of enforce

5 lines (4 loc) 116 B
// Checks if number is greater than zero export function isPositive(value: number): boolean { return value > 0; }