UNPKG

vuito

Version:

Simple, lightweight, isomorphic, and template-based validation library.

6 lines (4 loc) 151 B
import type { VRow } from '../types'; export default function (min: number): VRow['test'] { return (value: string) => min <= parseInt(value, 10); }