/usr/lib/perl5/YAML/Dumper/Syck.pm is in libyaml-syck-perl 1.19-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 | package YAML::Dumper::Syck;
use strict;
sub new { $_[0] }
sub dump { shift; YAML::Syck::Dump($_[0]) }
1;
|