Fix DSN Final-Recipient: field
[exim.git] / test / lib / Exim / Utils.pm
CommitLineData
4d8393c0
HSHR
1package Exim::Utils;
2use v5.10.1;
3use strict;
4use warnings;
5use parent 'Exporter';
6our @EXPORT_OK = qw(uniq numerically);
7
8
9sub uniq {
10 my %uniq = map { $_, undef } @_;
11 return keys %uniq;
12}
13
14sub numerically { $::a <=> $::b }
15
161;