UNPKG

vuito

Version:

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

6 lines (4 loc) 166 B
import type { VLengthy, VRow } from '../types'; export default function (min: number): VRow['test'] { return (value: VLengthy) => !value || min <= value.length; }