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
Currently in some places to normalize arguments we rely on explicit coercion (e.g. String(str)), when it's more accurate to ensure implicit coercion (e.g. +str).
Thing is there are some intentional differences between those two coercion mechanism, and when validating arguments the implicit coercion characteristics should be ensured.
The text was updated successfully, but these errors were encountered:
Currently in some places to normalize arguments we rely on explicit coercion (e.g.
String(str)
), when it's more accurate to ensure implicit coercion (e.g.+str
).Thing is there are some intentional differences between those two coercion mechanism, and when validating arguments the implicit coercion characteristics should be ensured.
The text was updated successfully, but these errors were encountered: