Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #30 from mraheelkhan/master
Browse files Browse the repository at this point in the history
fix typos in ReadMe file
  • Loading branch information
mattkingshott authored Oct 31, 2021
2 parents 0702dc8 + dc8db7a commit 722cf82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# Iodine

Iodine.js is a micro client-side validation library. It has no dependencies and can be used in isolation or as part of a framework. Iodine also supports chainable rules, allowing you to verify that a piece of data satisifies multiple criteria.
Iodine.js is a micro client-side validation library. It has no dependencies and can be used in isolation or as part of a framework. Iodine also supports chainable rules, allowing you to verify that a piece of data satisfies multiple criteria.

## Installation

Expand Down Expand Up @@ -224,11 +224,11 @@ The following validation rules are available:
| isMaxLength(limit) | Verify that the item's character length does not exceed the given limit
| isMinLength(limit) | Verify that the item's character length is not under the given limit
| isMax(limit) | Verify that the item's numerical value does not exceed the given limit
| isMin(limit) | Verify that the item's numberical value is not under the given limit
| isMin(limit) | Verify that the item's numerical value is not under the given limit
| isNotIn(array) | Verify that the item is not within the given `array`
| isNumeric | Verify that the item is `number` or a numeric `string`
| isOptional | Allow for optional values (only for use with multiple checks)
| isRegexMatch(exp) | Verify that the item satisifies the given regular expression
| isRegexMatch(exp) | Verify that the item satisfies the given regular expression
| isRequired | Verify that the item is not `null`, `undefined` or an empty `string`
| isSame(value) | Verify that the item is the same as the supplied value (uses loose compare)
| isStartingWith(value) | Verify that the item starts with the given value
Expand Down

0 comments on commit 722cf82

Please sign in to comment.