Subject: | accidental stealth dependency |
From Simple.pm
my $wrapper;
sub _fold {
require Text::Wrapper; # Even though it's core I don't like using it
$wrapper ||= Text::Wrapper->new(columns => 78, body_start => ' ');
return $wrapper->wrap(shift);
# I don't like it, I don't like it, I don't like it.
}
1;
Text::Wrapper looks like it's never been core: http://search.cpan.org/src/CJM/Text-Wrapper-1.000/Changes
I think you were thinking of Text::Wrap.