Skip to content Skip to sidebar Skip to footer

Properly Formatting JavaScript In JavaScript

How can I automatically format JavaScript properly? As an example, this: (function(){(function(){alert('whatever')})()})() Should become: (function(){ (function(){ ale

Solution 1:

There is the jsbeautifier, you can find the source code at github.


Solution 2:


Post a Comment for "Properly Formatting JavaScript In JavaScript"