jjjjjjj1's picture
update
186b709
raw
history blame
192 Bytes
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
}