Last active
October 11, 2015 21:38
-
-
Save kimmel/3922897 to your computer and use it in GitHub Desktop.
Show decodable HTTP compression formats
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use v5.16; | |
use warnings; | |
use autodie qw( :all ); | |
use utf8::all; | |
use LWP::UserAgent; | |
my $ua = LWP::UserAgent->new; | |
my $can_accept = HTTP::Message::decodable; | |
say $can_accept; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment