Cleanup pre function

Put variable declarations before any actual code to improve readability.

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
pull/393/head
Olliver Schinagl 6 years ago
parent 2e120d1176
commit e6a214d9f9

@ -18,12 +18,18 @@
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"ip-address-pre": function ( a ) {
if (!a) { return 0 }
var i, item;
var m = a.split("."),
n = a.split(":"),
x = "",
xa = "";
var m, n;
var x, xa;
if (!a) {
return 0
}
m = a.split(".");
n = a.split(":");
x = "";
xa = "";
if (m.length == 4) {
// IPV4

Loading…
Cancel
Save