Parse::CPAN::Whois::Author - Parse::CPAN::Whois::Author documentation


Parse-CPAN-Whois documentation Contained in the Parse-CPAN-Whois distribution.

Index


Code Index:

NAME

Top

Parse::CPAN::Whois::Author

METHODS

Top

email

name

pauseid

asciiname

name transliterated to ASCII

homepage


Parse-CPAN-Whois documentation Contained in the Parse-CPAN-Whois distribution.
# vim: sts=3 sw=3 et
package Parse::CPAN::Whois::Author;
use strict;
use warnings;

our $VERSION='0.01';

sub email {
   return $_[0]->{email};
}

sub name {
   return $_[0]->{fullname};
}

sub pauseid {
   return $_[0]->{id};
}

sub asciiname {
   return $_[0]->{asciiname};
}

sub homepage {
   return $_[0]->{homepage};
}

1;