Skip to content

Commit

Permalink
Added reference to parseFloat() and parseInt() as basis for those sca…
Browse files Browse the repository at this point in the history
…lars.

   README.md
  • Loading branch information
ccuilla committed Jul 14, 2017
1 parent 6741858 commit dc88061
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@ the type and have a real JavaScript Date returned that the client can use _witho
inevitable parsing or conversion themselves.

### NonNegativeInt
Integers that will have a value of 0 or more.
Integers that will have a value of 0 or more. Uses [`parseInt()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt).

### PositiveInt
Integers that will have a value greater than 0.
Integers that will have a value greater than 0. Uses [`parseInt()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt).

### NonNegativeFloat
Floats that will have a value of 0 or more.
Floats that will have a value of 0 or more. Uses [`parseFloat()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseFloat).

### PositiveFloat
Floats that will have a value greater than 0.
Floats that will have a value greater than 0. Uses [`parseFloat()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseFloat).

### EmailAddress
A field whose value conforms to the standard internet email address format as specified in
Expand Down

0 comments on commit dc88061

Please sign in to comment.