This commit is contained in:
☸️ 2024-12-05 12:52:27 +01:00 committed by GitHub
parent 3cea30a277
commit 3e8063c2c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,7 +63,7 @@ func gzipCompress(call otto.FunctionCall) otto.Value {
arg := argv[0]
if (!arg.IsString()) {
return ReportError("btoa: single argument must be a string.")
return ReportError("gzipCompress: single argument must be a string.")
}
uncompressedBytes := []byte(arg.String())