Do you know of any online JavaScript Beautifier that does not format this code
$("[id='abc']").css({top: '53px'});
like this
$("[id='abc']")
.css({
top: '53px'
});
but keeps everything on one line?
Do you know of any online JavaScript Beautifier that does not format this code
$("[id='abc']").css({top: '53px'});
like this
$("[id='abc']")
.css({
top: '53px'
});
but keeps everything on one line?
https://beautifier.io/ with "Preserve inline braces/code blocks?" ticked works.