download-name ( url -- name )


Vocabulary
http.client

Definition
USING: io.pathnames kernel present splitting ;

IN: http.client

: download-name ( url -- name )
present file-name "?" split1 drop "/" ?tail drop ;