mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-25 15:47:57 +03:00
8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
export function getVersion({ model }: EamuseInfo) {
|
|
const dateCode = model.split(':')[4];
|
|
|
|
if (model.startsWith("J44")) return 3;
|
|
if (model.startsWith("K44")) return 4;
|
|
return 0;
|
|
}
|