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'm doing this from Node Red, which is using JSONata 1.6, so this may have been fixed, but I cannot confirm.
$parseInteger("50", "#") produces the following error:
Invalid JSONata expression: matchSpec.parse is not a function.
After some investigation I found $formatInteger(50, "#") is not handled, but produces a better error message:
Invalid JSONata expression: Formatting an integer as a sequence starting with "#" is not supported by this implementation
This looks like error D3130, and since this error still exists in 1.7, I'm guessing the other error still occurs too. Is it possible to improve the error message?
The text was updated successfully, but these errors were encountered:
I'm doing this from Node Red, which is using JSONata 1.6, so this may have been fixed, but I cannot confirm.
$parseInteger("50", "#")
produces the following error:Invalid JSONata expression: matchSpec.parse is not a function
.After some investigation I found
$formatInteger(50, "#")
is not handled, but produces a better error message:Invalid JSONata expression: Formatting an integer as a sequence starting with "#" is not supported by this implementation
This looks like error D3130, and since this error still exists in 1.7, I'm guessing the other error still occurs too. Is it possible to improve the error message?
The text was updated successfully, but these errors were encountered: