UNPKG

predictype

Version:

PredicType is a library of pre-built and tested predicates for TypeScript, covering various data types and operations.

12 lines (11 loc) 322 B
/** * Exports for string predicate operations, enums, and types. * * @module predicates/strings */ export * from './stringComparison.js'; export * from './stringMembership.js'; export * from './stringPattern.js'; export * from './stringSize.js'; export * from './stringState.js'; export * from './stringSubstring.js';