Extract individual javascript file code from minified file

Viewed 2917

I have a list of .js files and I have a single minified version of these files with the source map. The minified file has been created using UglifyJS

Is it possible to extract code of the individual js files from the minified file? maybe by reading the source map?

eg:

original files:
1)head.js
2)tail.js
3)stomach.js
4)liver.js

minified file (containing code of all of above files):
-> body.min.js

source map:
-> body.min.js.map

Is it possible to extract the minified code (string) of stomach.js from body.min.js?

1 Answers
Related