NAME

Text::CSV::Base - comma-separated values manipulation routines

SYNOPSIS

use Text::CSV::Base;

$csv = Text::CSV::Base->new();        # create a new object

DESCRIPTION

The same functionality as Text::CSV with always_quote => 1.

This module existed to support the Text::CSV::Unicode module (< v0.300), which assumed always_quote => 1 in its functionality.

DEPRECATED

This module is now redundant.

To recreate the functionality of this module:

use Text::CSV;
$csv = Text::CSV->new( { always_quote => 1 } );

METHOD

new
$csv = Text::CSV::Base->new();

Create a new Text::CSV::Base object.

This function may be called as a class or an object method.

AUTHOR

Robin M Barker <rmbarker@cpan.org>

SEE ALSO

perl(1) Text::CSV