| Parse-CPAN-Whois documentation | Contained in the Parse-CPAN-Whois distribution. |
Parse::CPAN::Whois::Author
name transliterated to ASCII
| 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;