1

I had an old project that had been uglified using gulp-uglify. I need to work on that project now.

How do I bring it back to normal readable js?

Elye M.
  • 2,667
  • 4
  • 30
  • 43
Rehan
  • 3,813
  • 7
  • 37
  • 58
  • 1
    Possible duplicate of [Reverse Uglified Javascript Code](https://stackoverflow.com/questions/18408535/reverse-uglified-javascript-code) – Perfect Square Jan 28 '18 at 17:09

1 Answers1

1

You cannot "reverse" uglified code. It's a one-way process. The best you can achieve is to beautify the code (indentation and other cosmetic fixes) but you cannot restore the original variable names.

Tsvetan Ganev
  • 8,246
  • 4
  • 26
  • 43