Added logical or

This commit is contained in:
Sebastian Seedorf
2020-05-26 09:52:19 +02:00
parent c59e4a6a50
commit 05427eb47b
4 changed files with 49 additions and 3 deletions

5
mod.ts
View File

@@ -6,5 +6,6 @@ export {
Validatable,
ArraySymbol,
} from "./Validator.ts";
export * from "./validators/string.ts";
export * from "./validators/number.ts";
export { isString } from "./validators/string.ts";
export { isNumber, isInteger } from "./validators/number.ts";
export { or } from "./validators/logic.ts";