NAME Data::Validate::Terrorist - Validate a name against terrorist lists SYNOPSIS # as exported function use Data::Validate::Terrorist qw/is_terrorist/; print 'BAD' if is_terrorist($name); # as OO use Data::Validate::Terrorist; my $validator = Data::Validate::Terrorist->new; print 'BAD' if $validator->is_terrorist($name); DESCRIPTION Data::Validate::Terrorist is a simple validitor to validate a name against terrorist lists. The list is from , , run update_terrorist_csv to update the bundled csv. METHODS is_terrorist only accept $name. return 1 for yes, 0 for no. it will remove all non-alpha chars and compare with the list we have. AUTHOR Binary.com COPYRIGHT Copyright 2014- Binary.com LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO Data::OFAC