Skip to content

Kami/node-unused

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

unused Build Status

Identify unused variables in your javascript code.

cli

$ unused /path/to/file.js

--ignore-params

Comma separated list of function parameters to ignore during unused checks. You often want to know when you forgot to handle err or other parameters, but sometimes you have placeholders (req, res, etc) which you might want to ignore

$ unused /path/to/file.js --ignore-params req,res,_

api

unused(src)

src is a javascript source string

Returns an array of objects specifying the name, location, and if the variable is a function parameter

{
    name: 'foo',
    loc: {
        line: 1,
        column: 1,
    },
    param: true || false
}

install

npm install unused

License

Library is distributed under the Apache license.

About

A module which reports defined, but unused variables in your code.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published