1
0

Compare commits

...

1 Commits

Author SHA1 Message Date
14009697f0 add byte slice to string conversion to PushValue 2025-06-06 17:38:38 -05:00

View File

@ -206,6 +206,8 @@ func (s *State) PushValue(v any) error {
s.PushNumber(val)
case string:
s.PushString(val)
case []byte:
s.PushString(string(val))
case []int:
return s.pushIntSlice(val)
case []string: