This file is indexed.

/usr/share/perl5/Catmandu/Exporter/Null.pm is in libcatmandu-perl 0.9206-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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package Catmandu::Exporter::Null;

use namespace::clean;
use Catmandu::Sane;
use Moo;

with 'Catmandu::Exporter';

sub add {}

=head1 NAME

Catmandu::Exporter::Null - a expoter that doesn't export anything

=head1 SYNOPSIS

  	# From the commandline
  	$ catmandu convert JSON --fix myfixes to Null < /tmp/data.json


=head1 DESCRIPTION

This exporter exports nothing and can be used as in situations where you e.g. export
data from a fix.

=head1 SEE ALSO

L<Catmandu::Exporter>

=cut


1;