jstoolnpp
jstoolnpp copied to clipboard
JSLint issue
This is how JSFormat would output this code -
(function () {
"use strict";
var func = window.callback(true, function () {
return 0;
});
var expr = window.aa < window.bb ? func : false;
if (expr) {
return true;
}
}
());
This is what JSLint considers the 'correct' format -
(function () {
"use strict";
var func = window.callback(true, function () {
return 0;
});
var expr = window.aa < window.bb
? func
: false;
if (expr) {
return true;
}
}());
@sunjw Could you provide an update on your progress with this enhancement, please?