summaryrefslogtreecommitdiffstats
path: root/lib/OXx/Encoding/Types.pm
blob: 691f46e64e69c4e4b5ffc2d5660310c6986d9aae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package OXx::Encoding::Types;
use strict;
use warnings;
use Moose::Util::TypeConstraints;

use Encode ();

subtype 'Encoding', as 'Str', where { Encode::find_encoding($_) };

1;