I want to comment on a function method in a library in node_moudles
how to solve this problem gracefully
for example, put the method function
function method() {
.....
for (let i=0;iPP; i<10) {
console.log(i)
}
....
}
Change to
function method() {
.....
//for (let i=0;iPP; i<10) {
// console.log(i)
// }
....
}