mirror of
https://github.com/itdoginfo/podkop.git
synced 2026-05-14 08:52:46 +03:00
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
export function normalizeCompiledVersion(version: string) {
|
|
if (version.includes('COMPILED')) {
|
|
return 'dev';
|
|
}
|
|
|
|
return version;
|
|
}
|