@codeparticle/formal
Version:
A <2kb library for validating data of any kind
18 lines (17 loc) • 792 B
TypeScript
export { getProp } from './get-prop.js';
export { greaterThan } from './greater-than.js';
export { hasProp } from './has-prop.js';
export { isArray } from './is-array.js';
export { isEqualTo } from './is-equal-to.js';
export { isNonEmptyArray } from './is-non-empty-array.js';
export { isNonEmptyObject } from './is-non-empty-object.js';
export { isNonEmptyString } from './is-non-empty-string.js';
export { isNumber } from './is-number.js';
export { isObject } from './is-object.js';
export { isString } from './is-string.js';
export { isValidEmail } from './is-valid-email.js';
export { lessThan } from './less-than.js';
export { matchesRegex } from './matches-regex.js';
export { maxLength } from './max-length.js';
export { minLength } from './min-length.js';
import '../types/index.js';