I use Babel and Google Chrome Developer Tools with JavaScript source maps enabled. Given this code
function myFunc(elements) {
return elements
.map(element => element.value)
.filter(value => value >= 0);
}
how can I pause execution at execution of lambda function element => element.value
? If I set a breakpoint at line of .map(element => element.value)
it will only pause when map is executed, but not when the lambda function is executed.