MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / floatFromAny

Function floatFromAny

session/store.go:759–768  ·  view source on GitHub ↗
(value any)

Source from the content-addressed store, hash-verified

757 }
758 if b == ':' || b == ',' {
759 out = append(out, ' ')
760 }
761 }
762 return out
763}
764
765func loadJSONMap(path string) map[string]any {
766 data, err := os.ReadFile(path)
767 if err != nil {
768 return nil
769 }
770 var result map[string]any
771 if err := json.Unmarshal(data, &result); err != nil {

Callers 1

LoadMetaMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected