UNPKG

validatable

Version:

A library for synchronous and asynchronous input validation.

5 lines (4 loc) 148 B
export interface StringMatchOptions { regexp?: RegExp; } export declare function stringMatch(value: any, recipe?: StringMatchOptions): boolean;