guybedford / es-module-lexer

Low-overhead lexer dedicated to ES module parsing for fast analysis
MIT License
912 stars 47 forks source link

feat: simple destructuring support #154

Closed guybedford closed 1 year ago

guybedford commented 1 year ago

Adds support for basic destructuring of the form export const { a, b, c } and export let [a, b, c] = z style declarations, falling back on any nesting or default paths.