check-cookie-value ( string -- string ) (original) (raw)

check-cookie-value ( string -- string )

Vocabulary
http

Inputs

string an object

Outputs

string an object

Definition

USING: kernel ;

IN: http

: check-cookie-value ( string -- string )
[ "Cookie value must not be f" throw ] unless* ;