LibreCat / Catmandu

Catmandu - a data processing toolkit
https://librecat.org
175 stars 31 forks source link

Support fixing Catmandu::Iterable #381

Closed nichtich closed 1 year ago

nichtich commented 2 years ago

Can we add a method fix to Catmandu::Iterable?

sub fix {
  my $self  = shift;
  my $fixer = Catmandu->fixer(@_);
  return $self->map(sub { return $fixer->fix(shift); })
}