i have some little javascript library which can be loaded separately and work without any dependency.
now i want to merge some of them into a single js file. the problem is that every of them has some part in common( some helper function).
Is there some tools i can use to merge these file and remove the redundant code?
i have some little javascript library which can be loaded separately and work without
Share
Assuming the redundancy is duplicated code (exact copies or copies with modifications), our JavaScript CloneDR can help find the duplicated code and suggest the essence of the subroutines you need to remove the duplication.