Files
GseTDDUebungKCLR/database/perl/vendor/lib/Term/Table/Spacer.pm
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

16 lines
185 B
Perl

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