:JSON;
use strict;
use warnings;
# ABSTRACT: A JSON converting processor
our $VERSION = '1.112100'; # VERSION
use Moose;
extends 'DataFlow::Proc::Converter';
use namespace::autoclean;
use JSON
r_opts
? JSON::Any->new( $self->converter_opts )
: JSON::Any->new;
},
handles => {
'json' => sub { shift->converter(@_) },
'json_opts' => sub {
converter_opts(@_) },
'has_json_opts' => sub { shift->has_converter_opts },
},
init_arg => 'json',
);
has '+converter_opts' => ( 'init_arg' => 'json_opts', );
sub _build_subs {
m