UNPKG

shift-interpreter

Version:

Shift-interpreter is an experimental JavaScript meta-interpreter useful for reverse engineering and analysis. One notable difference from other projects is that shift-interpreter retains state over an entire script but can be fed expressions and statement

8 lines (5 loc) 186 B
declare module 'shift-parser' { import { Script, Module } from 'shift-ast'; export function parseScript(src: string): Script; export function parseModule(src: string): Module; }