Command Palette
Search tools and actions
Search tools...
⌘K
Code Minifier
Minify or format JavaScript, TypeScript, CSS, HTML and JSON.
Minify
Format
1
2
3
4
5
6
7
8
function greet(name) { const message = "Hello, " + name + "!"; console.log(message); return message; } greet("world");
Minified
1