UNPKG

unused

Version:

A module which reports unused variables in your code.

12 lines (8 loc) 166 B
// the foo at global scope remains unused // when a new foo inside bar is declared var foo = 'bz'; function bar() { var foo = 'dog'; foo = 'cat'; } bar();