javascript-obfuscator
Version:
JavaScript obfuscator
8 lines (7 loc) • 359 B
TypeScript
import * as ESTree from 'estree';
import { TNodeWithLexicalScope } from '../types/node/TNodeWithLexicalScope';
export declare class NodeLexicalScopeUtils {
static getLexicalScope(node: ESTree.Node): TNodeWithLexicalScope | undefined;
static getLexicalScopes(node: ESTree.Node): TNodeWithLexicalScope[];
private static getLexicalScopesRecursive;
}