goatslacker / get-scope

get global and function scope in javascript using the JS AST

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get-scope

Build Status NPM version

Install

npm install get-scope

Usage

var esprima = require('esprima')
var getScope = require('get-scope')

var ast = esprima.parse('var a = 1')

getScope.forProgram(ast) // { a: { type: 'Literal', value: 1 } }

License

MIT

About

get global and function scope in javascript using the JS AST


Languages

Language:JavaScript 100.0%