expr-eval
expr-eval copied to clipboard
[HELP] How do I property access when the property name have symbol in it?
For example in normal JS, I can just do this to access it:
my_variable["my-property"]
I try with expr-eval something like this, it return undefined even though it should not be empty.
parser.evaluate("settings.my_normal_property['my-symbol-property']", { settings: settings })