1st
This commit is contained in:
James Liu
2026-05-28 01:50:09 +08:00
parent 34b173ba49
commit e584c0be3b
10 changed files with 1481 additions and 10 deletions
+9 -2
View File
@@ -1,9 +1,16 @@
export const isGF = (info: EamuseInfo) => {
return info.model.split(':')[2] == 'A';
const t = info.model.split(':')[2];
return t == 'A' || t == 'C';
};
export const isDM = (info: EamuseInfo) => {
return info.model.split(':')[2] == 'B';
const t = info.model.split(':')[2];
return t == 'B' || t == 'D';
};
export const isGalaxyWaveDeltaModel = (model: string) => {
const t = model.split(':')[2];
return t == 'C' || t == 'D';
};
export const getVersion = (info: EamuseInfo) => {