I am working on existing big project and I notice that there is useless code in different files. I have to remove that code from many files, but it' would take a lot manually. So I am trying one regex to replace this code in different files.
Is this any way to find the follwing code with one regex?
.map(
response => {
return response;
}
);