lint: fix whitespace

This commit is contained in:
Barış Soner Uşaklı
2024-06-10 17:03:58 -04:00
parent bad1564301
commit b4db2f7faf

View File

@@ -42,7 +42,7 @@ Meta.userOrGroupExists = async function (slug) {
]);
return isArray ?
slug.map((s, i) => userExists[i] || groupExists[i]):
slug.map((s, i) => userExists[i] || groupExists[i]) :
(userExists || groupExists);
};