Is it possible to rebuild the original source JavaScript source file from the mini version and the corresponding source map file?

I am working on a project where I have to statically analyze JavaScript code. However, for several libraries, I have access only to the mini version of the file and the corresponding source map. Is there a method / method with which I can generate the source file using these files?

+6
source share
1 answer

I found a node.js library that can help with this: Maximize Matching github repo

+6
source

Source: https://habr.com/ru/post/958675/


All Articles