absolute-url? ( string -- ? )


Vocabulary
farkup

Definition
USING: kernel sequences ;

IN: farkup

: absolute-url? ( string -- ? )
{ "http://" "https://" "ftp://" } [ head? ] with any? ;