wazero v1.7.2.

This commit is contained in:
Nuno Cruces
2024-06-11 22:57:29 +01:00
parent ef065b6baa
commit f7ac77027c
9 changed files with 29 additions and 34 deletions

View File

@@ -26,7 +26,7 @@ func (j JSON) Scan(value any) error {
buf = v.AppendFormat(buf, time.RFC3339Nano)
buf = append(buf, '"')
case nil:
buf = append(buf, "null"...)
buf = []byte("null")
default:
panic(AssertErr())
}