jjjjjjj1's picture
update
5c631da
export const TIP_THRESHOLD = strNum2Num(import.meta.env.VITE_GLOB_CHAT_TIP_THRESHOLD) || 6
export function strNum2Num(str: string) {
const n = parseInt(str, 10)
return isNaN(n) ? 0 : n
}