The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Time::Duration::Abbreviated - Describe time duration in abbreviated English

SYNOPSIS

    use Time::Duration::Abbreviated;

    duration(12345, 2); # => "3 hrs 26 min"
    earlier(12345, 2);  # => "3 hrs 26 min ago"
    later(12345, 2);    # => "3 hrs 26 min later"

    duration_exact(12345); # => "3 hrs 25 min 45 sec"
    earlier_exact(12345);  # => "3 hrs 25 min 45 sec ago"
    later_exact(12345);    # => "3 hrs 25 min 45 sec later"

DESCRIPTION

Time::Duration::Abbreviated is a abbreviated version of Time::Duration.

SEE ALSO

Time::Duration

LICENSE

Copyright (C) moznion.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

moznion <moznion@gmail.com>