Con Javascript Beautifier transforma tu código Javascript en una forma más fácil de ver o utilízalo para transformar archivos Javascript minimizados en algo más agradable a la vista.
Imagínate que tienes este código Javascript:
function j(e)
{var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}
Javascript Beautifier lo transformará en algo más agradable:
function j(e)
{
var t = e.length,
n = x.type(e);
return x.isWindow(e) ? !1 : 1 === e.nodeType && t ? !0 : "array" === n || "function" !== n && (0 === t || "number" == typeof t && t > 0 && t - 1 in e)
}
http://www.danstools.com/javascript-beautify/
(Visitado 44 veces, 1 visitas hoy)

