Hi, Unable to minify because some of the codes showing error.
The error message --> Unexpected token: operator (>) (line: 4, col: 56)
var text = comment.item(i).textContent;
var phone = '';
if(text.match(/\d{10,11}/g)!=null){
phone = text.match(/\d{10,11}/g).map(n => `6${n}`).join(', ');
}
How to change some of the problem codes before minify process?
Thanks