Explorar el Código

Fix Pokemon not quite being sorted

tags/v0.1.0
Fen Dweller hace 5 años
padre
commit
a536971c02
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      presets/pokemon.js

+ 4
- 1
presets/pokemon.js Ver fichero

@@ -40826,5 +40826,8 @@ function makePokemon() {
constructor: value
});
});
return results;

return results.sort((a, b) => {
return a.name.localeCompare(b.name);
});
}

Cargando…
Cancelar
Guardar