An open API service indexing awesome lists of open source software.

https://github.com/capaj/babylon-undeclared-identifiers

given a javascript source code, returns undeclared identifiers
https://github.com/capaj/babylon-undeclared-identifiers

babel

Last synced: about 2 months ago
JSON representation

given a javascript source code, returns undeclared identifiers

Awesome Lists containing this project

README

          

# babylon-undeclared-identifiers
given a javascript source code, returns undeclared identifiers

Previously I used esprima where it was quite complicated task. Thankfully, babylon offers `path.scope.globals` where we get all undefined identifiers right out of the box which makes this package trivial.