Skip to content

Commit

Permalink
Formatting is crazy
Browse files Browse the repository at this point in the history
  • Loading branch information
CubesterYT committed Jan 18, 2025
1 parent 0d171a3 commit 13977e0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions extensions/CubesterYT/Webhooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@
} else if (Array.isArray(value)) {
value.forEach((elem, index) => process(`${name}[${index}]`, elem));
} else if (typeof value === "object") {
keys(value).forEach((key) =>
process(`${name}[${key}]`, value[key])
);
keys(value).forEach((key) => process(`${name}[${key}]`, value[key]));
}
};
keys(data).forEach((key) => process(key, data[key]));
Expand Down

0 comments on commit 13977e0

Please sign in to comment.