Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
chemicalcrux
/
macrovision
Segui
1
Vota
0
Forka
0
Codice
Problemi
5
Pull Requests
0
Rilasci
10
Wiki
Attività
Sfoglia il codice sorgente
Fix Pokemon not quite being sorted
tags/v0.1.0
Fen Dweller
5 anni fa
parent
6d2994f5b4
commit
a536971c02
1 ha cambiato i file
con
4 aggiunte
e
1 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
presets/pokemon.js
+ 4
- 1
presets/pokemon.js
Vedi File
@@ -40826,5 +40826,8 @@ function makePokemon() {
constructor: value
});
});
return results;
return results.sort((a, b) => {
return a.name.localeCompare(b.name);
});
}
Write
Preview
Loading…
Annulla
Salva