mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-21 15:53:50 +02:00
lint: apply pretty import
This commit is contained in:
@@ -96,10 +96,7 @@ function compareByDisplayName(a, b) {
|
||||
* @returns
|
||||
*/
|
||||
function compareById(a, b) {
|
||||
if (
|
||||
typeof a.id !== 'string' ||
|
||||
typeof b.id !== 'string'
|
||||
) {
|
||||
if (typeof a.id !== 'string' || typeof b.id !== 'string') {
|
||||
return 0;
|
||||
}
|
||||
return a.id.localeCompare(b.id);
|
||||
|
||||
Reference in New Issue
Block a user