Amazon-CloudFront-SignedURL

 view release on metacpan or  search on metacpan

t/Util.pm  view on Meta::CPAN

package t::Util;
use strict;
use warnings;
use utf8;
use Exporter 'import';

our @EXPORT = qw/slurp/;

sub slurp {
    my $filename = shift;
    open my $fh, '<', $filename or die "$filename: $!";
    do { local $/; <$fh> };
}

1;



( run in 0.875 second using v1.01-cache-2.11-cpan-39bf76dae61 )