Generic coercion
If the declared type is not a primitive nor Array (or an array subclass) it'll do generic coercion. When generic coercing a value, Structure will just instantiate the declared type (using new
) passing the raw value as the parameter (only if the raw value isn't of the declared type already).
Coercion to Date
type enters in this same category, so if you have an attribute of the type Date
, it'll use new Date(<raw value>)
to coerce it. For more info about how this coercion works check the cases for value
and dateString
parameters on Date documentation.
Last updated