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
I think the problem is here. When the field value is a constant, getSchemaType() returns the literal value as a JS expression. In this case, the two keyTypes are "email_address" and "phone_number". The two getSchemaType() calls on lines 73 and 78 return "number" and "boolean", respectively. Then keyType.includes() returns true for "phone_number" on line 78 so we fail to treat the corresponding value as a string and we don't wrap it in quotes.
The text was updated successfully, but these errors were encountered:
Reproduced with version 13.0.23.
Test case:
Run it like this:
Output file:
Note that "phone_number" isn't in quotes.
I think the problem is here. When the field value is a constant,
getSchemaType()
returns the literal value as a JS expression. In this case, the twokeyType
s are"email_address"
and"phone_number"
. The twogetSchemaType()
calls on lines 73 and 78 return "number" and "boolean", respectively. ThenkeyType.includes()
returnstrue
for"phone_number"
on line 78 so we fail to treat the correspondingvalue
as a string and we don't wrap it in quotes.The text was updated successfully, but these errors were encountered: