Update the brace format from 1tbs to stroustrup

This commit is contained in:
Eldritch-Oliver 2025-10-08 23:10:15 -06:00
parent 1c7308e188
commit 3dd3139281
13 changed files with 31 additions and 16 deletions

View file

@ -42,9 +42,11 @@ export function toBoolean(val) {
export function documentSorter(a, b) {
if (!a && !b) {
return 0;
} else if (!a) {
}
else if (!a) {
return 1;
} else if (!b) {
}
else if (!b) {
return -1;
};