find dead JavaScript code?

后端 未结 8 892
醉酒成梦
醉酒成梦 2020-12-05 05:51

We are refactoring a legacy web app and as a result are \"killing\" quite a lot of JavaScript code but we\'re afraid of deleting what we think is dead code due to not being

8条回答
  •  無奈伤痛
    2020-12-05 06:38

    There's grep. Use it to find function calls. Suppose you have a method called dostuff(). Use grep -r "dostuff()" * --color on your project's root directory. Unless you find anything other than the definition, you can safely erase it.

    ack is also a notable alternative to grep.

提交回复
热议问题