Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FunAudioLLM/Fun-Audio-Chat
/ getFloatFromStorage
Function
getFloatFromStorage
web_demo/client/src/pages/Queue/Queue.tsx:11–13 ·
view source on GitHub ↗
(val: string | null)
Source
from the content-addressed store, hash-verified
9
10
11
function getFloatFromStorage(val: string | null) {
12
return (val == null) ? undefined : parseFloat(val)
13
}
14
15
function getIntFromStorage(val: string | null) {
16
return (val == null) ? undefined : parseInt(val)
Callers
1
Queue
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected