File: fields-filter.pl

package info (click to toggle)
libmetacpan-client-perl 2.033000-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: perl: 2,564; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 242 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# examples/fields-filter.pl

use strict;
use warnings;
use Data::Printer;

use MetaCPAN::Client;

my $module =
    MetaCPAN::Client->new->module('Moose',
                                  { fields => [ qw/ author version / ] });

p $module;