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

Function mapsEqual

ui/runtime.go:1015–1025  ·  view source on GitHub ↗
(a, b map[string]any)

Source from the content-addressed store, hash-verified

1013 case int64:
1014 return float64(v)
1015 default:
1016 return 0
1017 }
1018}
1019
1020func truthy(value any) bool {
1021 b, _ := value.(bool)
1022 return b
1023}
1024
1025func truncateString(value string, limit int) string {
1026 runes := []rune(value)
1027 if limit <= 0 || len(runes) <= limit {
1028 return value

Callers 2

recordTaskActivityMethod · 0.85
recordInlineActivityMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected