NAME

Data::Dumper::AutoEncode::AsDumper - Concise, encoded data dumping with Dumper(), everywhere

SYNOPSIS

use utf8;
use Data::Dumper::AutoEncode::AsDumper;

$data = {
    русский  => 'доверяй, но проверяй',
    i中文    => '也許你的生活很有趣',
    Ελληνικά => 'ἓν οἶδα ὅτι οὐδὲν οἶδα',
};

say 'proverbs', Dumper $data; # output encode to utf8

DESCRIPTION

L<Data::Dumper> decodes data before dumping it, making it unreadable
for humans. This module exports the C<Dumper> function, but the
dumped output is encoded.

EXPORTED FUNCTION

WHY USE THIS MODULE?

This package implements a thin wrapper around the excellent module Data::Dumper::AutoEncode. Reasons to use this instead include:

ACKNOWLEDGEMENTS

Dai Okabayashi (BAYASHI)

Graham Knop (HAARG)

Gurusamy Sarathy (GSAR) ( and Sawyer X (XSAWYERX) )

Slaven Rezić (SREZIC)

CPAN Testers

All the dzil contributors

Athanasius

I stand on the shoulders of giants ...

SEE ALSO

Data::Dumper::AutoEncode, Data::Dumper