Is it possible to get the intermediary value of a JS chaining process in VS Code Debugger.
For example here :
const items = input
.toString()
.split('\r\n')
.filter((i) => i !== undefined && i !== '');
I would like to get the value of items or input after it has been changed to toString()
or after it has been split.
Thanks