30 lines
504 B
JavaScript
30 lines
504 B
JavaScript
export const getUserId = () => {
|
|
return 1
|
|
}
|
|
|
|
export function compareVersion(ver1, ver2) {
|
|
const v1 = ver1.split('.')
|
|
const v2 = ver2.split('.')
|
|
const len = Math.max(v1.length, v2.length)
|
|
|
|
while (v1.length < len) {
|
|
v1.push('0')
|
|
}
|
|
while (v2.length < len) {
|
|
v2.push('0')
|
|
}
|
|
|
|
for (let i = 0; i < len; i++) {
|
|
const num1 = parseInt(v1[i])
|
|
const num2 = parseInt(v2[i])
|
|
|
|
if (num1 > num2) {
|
|
return 1
|
|
} else if (num1 < num2) {
|
|
return -1
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|