Skip to content

Commit

Permalink
functions.js: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
reedy authored Jan 3, 2024
1 parent 0b8bd5a commit 0c54c17
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion js/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,12 @@ function getDST(element) {
* @returns {string}
*/
function getEliteIcon(e, validity = "") {
if (!e || e === "" || eliteicons === undefined || eliteicons[e] === undefined) {
if (
!e ||
e === "" ||
eliteicons === undefined ||
eliteicons[e] === undefined
) {
return "";
}

Expand Down

0 comments on commit 0c54c17

Please sign in to comment.