Search code examples
javascriptcode-formattinguglifyjs

Uglify JS beautify using tabs


I know I can set the indent level of javascript that has been beautified with uglifyjs, but is it possible to get it to use tabs instead of spaces?

If not, Is there a similar tool that can? Or any patched version?


Solution

  • In the Uglify JS's process.js file just modify the indent function so instead of space (" ") it inserts tabs ("\t").