Skip to content
angerangel edited this page Mar 15, 2013 · 1 revision

USAGE

   DECODE-URL url

DESCRIPTION

Decode a URL according to rules of sys/*parse-url.

DECODE-URL is a function value.

ARGUMENTS

  • url

#SOURCE

decode-url: make function! [  ["Decode a URL according to rules of sys/*parse-url." url][
    --- {This function is bound in the context of sys/*parse-url.}
    out: make block! 8
    parse/all url rules
    out
] ]

Clone this wiki locally