MCPcopy 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
11function getFloatFromStorage(val: string | null) {
12 return (val == null) ? undefined : parseFloat(val)
13}
14
15function getIntFromStorage(val: string | null) {
16 return (val == null) ? undefined : parseInt(val)

Callers 1

QueueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected