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
There are several types of values that will be successfully cast to a Double.
@@ -673,7 +673,7 @@ new Temperature({ celsius: '1.2e12' }).celsius; // 15 as a Double
673
673
newTemperature({ celsius:true }).celsius; // 1 as a Double
674
674
newTemperature({ celsius:false }).celsius; // 0 as a Double
675
675
newTemperature({ celsius: { valueOf: () =>83.0033 } }).celsius; // 83 as a Double
676
-
newTemperature({ celsius:'' }).celsius; // null as a Double
676
+
newTemperature({ celsius:'' }).celsius; // null
677
677
```
678
678
679
679
The following inputs will result will all result in a [CastError](validation.html#cast-errors) once validated, meaning that it will not throw on initialization, only when validated:
@@ -688,12 +688,12 @@ Mongoose supports 32-bit integers as a SchemaType.
688
688
Int32s are stored as [32-bit integers in MongoDB (BSON type "int")](https://www.mongodb.com/docs/manual/reference/bson-types/).
0 commit comments