]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/NoopFilter.pm
b9c00ff7a13e14fe9f59675ad37747cde6efda58
[public-inbox.git] / lib / PublicInbox / NoopFilter.pm
1 # Copyright (C) 2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 package PublicInbox::NoopFilter;
5 use strict;
6
7 sub new { bless \(my $ignore), __PACKAGE__ }
8
9 # noop workalike for PublicInbox::GzipFilter methods
10 sub translate { $_[1] // '' }
11 sub zmore { $_[1] }
12 sub zflush { $_[1] // '' }
13 1;