Skip to content

Commit dc88061

Browse files
committed
Added reference to parseFloat() and parseInt() as basis for those scalars.
README.md
1 parent 6741858 commit dc88061

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,16 @@ the type and have a real JavaScript Date returned that the client can use _witho
130130
inevitable parsing or conversion themselves.
131131

132132
### NonNegativeInt
133-
Integers that will have a value of 0 or more.
133+
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).
134134

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

138138
### NonNegativeFloat
139-
Floats that will have a value of 0 or more.
139+
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).
140140

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

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

0 commit comments

Comments
 (0)