Skip to content

Commit

Permalink
docs: add isValidHttpURL to validation fns table
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-anderson committed Jun 18, 2024
1 parent abc89d9 commit de3811c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ app.post("/register", (req, res, next) => {
| [`isValidNumeric`](src/validate/numeric.ts) | Returns `true` if `value` only contains numeric characters |
| [`isValidPassword`](src/validate/password.ts) | Returns `true` if `value` is a valid password (see jsdoc for details) |
| [`isValidPhone`](src/validate/phone.ts) | Returns `true` if `value` is a valid string of US phone number _DIGITS_ |
| [`isValidURL`](src/validate/url.ts) | Returns `true` if `value` is a valid absolute HTTP/S URL |
| [`isValidURL`](src/validate/url.ts) | Returns `true` if `value` is a valid absolute or relative URL (protocol agnostic) |
| [`isValidHttpURL`](src/validate/url.ts) | Returns `true` if `value` is a valid absolute HTTP/S URL |

## 🤝 Contributing

Expand Down

0 comments on commit de3811c

Please sign in to comment.