Handbook
Glossary
decode-response-body ( response bytes -- response content )
Vocabulary
http
.
client
.
private
Inputs
response
an
object
bytes
an
object
Outputs
response
an
object
content
an
object
Definition
USING:
accessors
io.encodings.string
kernel
sequences
;
IN:
http.client.private
:
decode-response-body
( response bytes -- response content )
dup
empty?
[
[
dup
]
dip
decode-content-codings
]
unless
over
content-encoding>>
decode
[
>>body
]
keep
;