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
The console uses parseCommand to support reading and assigning variables but functionality is very limited as it is not a true command parser. Opting not to use Function because executing unchecked user input poses security concerns.
This is a solution that uses Function with an allowlist strategy so that only supported members on window can be executed: https://stackoverflow.com/a/46374395
This is ideal as it would allow debugging with Intl which has been a common cause of issues in embedded IE.
The console uses
parseCommandto support reading and assigning variables but functionality is very limited as it is not a true command parser. Opting not to useFunctionbecause executing unchecked user input poses security concerns.This is a solution that uses
Functionwith an allowlist strategy so that only supported members onwindowcan be executed: https://stackoverflow.com/a/46374395This is ideal as it would allow debugging with
Intlwhich has been a common cause of issues in embedded IE.