Minification (minify / compress / ) is the process of compression code
from the original size to the smallest size and does not affect to the
operation of the code. The process will removes or modifies some
unnecessary characters from the code. Removes characters as white
space, new line, comment out code… modifies as HEX color, defined
variable to minified character… Finally, all the code will on one
line.
Minification process can reduce 10% – 95% the size of code! This will
help the website running faster and then get high Search Engine
Optimization (SEO) score. This’s also a way to save resources on web
server, of course!
What's beautify?
Beautification is the process of uncompression the minified code. Help
coder to easy view, read and editable.