Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As you know, trailing commas break IE.

Is there a tool that, given a directory, it can traverse all its subdirectories, and scan all *.js files....removing trailing commas from them?

share|improve this question
Linux's egrep with regex – Trevor Dec 10 '11 at 23:56

1 Answer

I'd use JSLint.

var x = {a: "", b: "", };

Results in:

Error:

Problem at line 1 character 22: Unexpected ','.

var x = {a: "", b: "", };

Unfortunately, this doesn't traverse directories and do the removal. However, this leads to these answers, which may be helpful:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.