Question

Find unused Javascript functions?

I have around 100 .js files in my application. I need to find the unused functions from these files.

Which editor or tool can help me?

 45  31454  45
1 Jan 1970

Solution

 9

Give a look to the JSLint code quality tool.

2009-07-23

Solution

 2

You can do this using Jsure, a Javascript lint implementation. You'll be looking for the -unused-funs flag

2009-07-23