sindresorhus / strip-debug

Strip console, alert, and debugger statements from JavaScript code
MIT License
84 stars 15 forks source link

Doesn't work with import/exports #23

Closed chinchang closed 3 years ago

chinchang commented 3 years ago

Esprima fails to parse such files. sourceType: true needs to be passed to Esprima to fix this, but there is not way to pass options to Esprima.

sindresorhus commented 3 years ago

Fixed by https://github.com/sindresorhus/strip-debug/pull/24.