/usr/share/perl5/Term/Table/Spacer.pm is in libterm-table-perl 0.012-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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.012';
sub new { bless {}, $_[0] }
sub width { 1 }
sub sanitize { }
sub mark_tail { }
sub reset { }
1;
|