This file is indexed.

/usr/lib/perl5/Unicode/UTF8.pm is in libunicode-utf8-perl 0.59-1build1.

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
package Unicode::UTF8;

use strict;
use warnings;

BEGIN {
    our $VERSION    = '0.59';
    our @EXPORT_OK  = qw[ decode_utf8 encode_utf8 ];
    our %EXPORT_TAGS = (
        all => [ @EXPORT_OK ],
    );

    require XSLoader;
    XSLoader::load(__PACKAGE__, $VERSION);

    require Exporter;
    *import = \&Exporter::import;
}

1;