vote up 3 vote down star
1

I've got a collection of javascript files from a 3rd party, and I'd like to remove all the unused methods to get size down to a more reasonable level.

Does anyone know of a tool that does this for Javascript? At the very least give a list of unused/used methods, so I could do the manually trimming? This would be in addition to running something like the YUI Javascript compressor tool...

Otherwise my thought is to write a perl script to attempt to help me do this.

flag

3 Answers

vote up 11 vote down check

No. Because you can "use" methods in insanely dynamic ways like this.

obj[prompt("Gimme a method name.")]();
link|flag
Yeah, the best you could do is a rough pass. – Nosredna Jul 22 at 19:34
1  
I'm going to start using this method on all my projects. – tj111 Jul 22 at 19:37
Wow. That's NASTY! – Alan Jul 22 at 19:42
1  
Nasty awesome, you mean. – Chuck Jul 22 at 19:47
but barring the example and other user-generated/random-generated methods, couldn't you whittle down the files? – jedierikb Jul 23 at 17:11
show 1 more comment
vote up 1 vote down

Check out JSCoverage . Generates code coverage statistics that show which lines of a program have been executed (and which have been missed).

link|flag
vote up 2 vote down

Unless the library author kept track of dependencies and provided a way to download the minimal code [e.g. MooTools Core download], it will be hard to to identify 'unused' functions.

The problem is that JS is a dynamic language and there are several ways to call a function.

E.g. you may have a method like

function test() 
{
   //
}

You can call it like

   test();

   var hello = i > 1 ? 'test' : 'xyz';
   hello();

   window[hello]();
link|flag

Your Answer

Get an OpenID
or

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