Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
leurez
/
moss
like
4
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
186b709
moss
/
src
/
hooks
/
useChatTip
/
common.ts
jjjjjjj1
update
186b709
over 1 year ago
raw
Copy download link
history
blame
Safe
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
}