You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,16 +130,16 @@ the type and have a real JavaScript Date returned that the client can use _witho
130
130
inevitable parsing or conversion themselves.
131
131
132
132
### 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).
134
134
135
135
### 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).
137
137
138
138
### 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).
140
140
141
141
### 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).
143
143
144
144
### EmailAddress
145
145
A field whose value conforms to the standard internet email address format as specified in
0 commit comments