Handbook
Glossary
encode-uri-component ( str -- str' )
Vocabulary
urls
.
encoding
Inputs
str
an
object
Outputs
str'
an
object
Definition
USING:
kernel
make
sequences
urls.encoding.private
;
IN:
urls.encoding
:
encode-uri-component
( str -- str' )
[
[
dup
escape-uri-component-char?
[
hex-utf8%
]
[
,
]
if
]
each
]
""
make
;