[chore] Reformat callback

This commit is contained in:
Cohee 2024-10-10 00:41:43 +03:00
parent 7a598a439a
commit 8333f44e2b
1 changed files with 7 additions and 7 deletions

View File

@ -849,25 +849,25 @@ function sortArrayObjectCallback(args, value) {
if (typeof value == 'string') {
try {
parsedValue = JSON.parse(value);
} catch {
// return the original input if it was invalid
return value;
} catch {
// return the original input if it was invalid
return value;
}
} else {
parsedValue = value
parsedValue = value;
}
if (Array.isArray(parsedValue)) {
// always sort lists by value
parsedValue.sort(customSortComparitor)
parsedValue.sort(customSortComparitor);
} else if (typeof parsedValue == 'object') {
let keysort = args.keysort;
if (isFalseBoolean(keysort)) {
parsedValue = Object.keys(parsedValue).sort(function(a,b){return customSortComparitor(parsedValue[a], parsedValue[b])});
parsedValue = Object.keys(parsedValue).sort(function (a, b) { return customSortComparitor(parsedValue[a], parsedValue[b]); });
} else {
parsedValue = Object.keys(parsedValue).sort(customSortComparitor);
}
}
return JSON.stringify(parsedValue);
return JSON.stringify(parsedValue);
}
/**