File: Spacer.pm

package info (click to toggle)
libterm-table-perl 0.024-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: perl: 503; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Term::Table::Spacer;
use strict;
use warnings;

our $VERSION = '0.024';

sub new { bless {}, $_[0] }

sub width { 1 }

sub sanitize  { }
sub mark_tail { }
sub reset     { }

1;