We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
source-map-js
Our current sourcemap parsing engine, source-map-js, is a fork of the original Mozilla module, but with several optimizations and without WASM.
This is not ideal because:
new Function()
Ideally, we should be able to internally parse sourcemaps, and remove this single dependency that Sandworm currently has.
The text was updated successfully, but these errors were encountered:
gabidobo
When branches are created from issues, their pull requests are automatically linked.
Our current sourcemap parsing engine,
source-map-js
, is a fork of the original Mozilla module, but with several optimizations and without WASM.This is not ideal because:
source-map-js
also bundles a generator that we don't neednew Function()
internally, which is potentially dangerousIdeally, we should be able to internally parse sourcemaps, and remove this single dependency that Sandworm currently has.
The text was updated successfully, but these errors were encountered: