We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the latest version and write the following code: Parser.evaluate('in1["key"]', { in1: { key: 'value' } });
Parser.evaluate('in1["key"]', { in1: { key: 'value' } });
I expect the above code to output "value", but got undefined
undefined
Can you spare some time to have a look? Thank you. @silentmatt
The text was updated successfully, but these errors were encountered:
I try to find answers in other issues. Find similar problems, but this is not what I want. #114
Sorry, something went wrong.
expr-eval/src/functions.js
Line 253 in 6e889e0
export function arrayIndex(array, index) { if (Array.isArray(array)) { return array[index | 0]; } return array[index]; }
Then the world will be peaceful.
No branches or pull requests
Use the latest version and write the following code:
Parser.evaluate('in1["key"]', { in1: { key: 'value' } });
I expect the above code to output "value", but got
undefined
Can you spare some time to have a look? Thank you. @silentmatt
The text was updated successfully, but these errors were encountered: