Panel/Agent-Windows/OGP64/usr/share/perl5/5.40/Term/Table/Spacer.pm
2026-06-06 18:46:40 -04:00

15 lines
185 B
Perl

package Term::Table::Spacer;
use strict;
use warnings;
our $VERSION = '0.018';
sub new { bless {}, $_[0] }
sub width { 1 }
sub sanitize { }
sub mark_tail { }
sub reset { }
1;