mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 01:44:39 -05: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;
|
|
}
|