File size: 192 Bytes
186b709
 
 
 
 
 
1
2
3
4
5
6
7
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
}